Skip to content

Commit 14feb47

Browse files
committed
dumb dumb dumb dumb: use non-git dependency for vulkan builds to try and fix windows path issue
1 parent b47394d commit 14feb47

File tree

2 files changed

+10
-8
lines changed

2 files changed

+10
-8
lines changed

nobodywho/Cargo.lock

Lines changed: 6 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

nobodywho/core/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ minijinja = { version = "2.11.0", features = ["builtins", "json", "loader"] }
1010
minijinja-contrib = { version = "2.11.0", features = ["pycompat"] }
1111
serde = { version = "1.0.215", features = ["derive"] }
1212
chrono = "0.4.39"
13-
llama-cpp-sys-2 = { git = "https://github.com/utilityai/llama-cpp-rs", branch = "update-llama-cpp-2025-10-15" }
14-
llama-cpp-2 = { git = "https://github.com/utilityai/llama-cpp-rs", branch = "update-llama-cpp-2025-10-15" }
13+
llama-cpp-sys-2 = { version = "0.1.122" }
14+
llama-cpp-2 = { version = "0.1.122" }
1515
lazy_static = "1.5.0"
1616
tokio = { version = "1.43.0", features = ["sync", "rt", "rt-multi-thread", "macros"] }
1717
tokio-stream = "0.1.17"
@@ -23,5 +23,5 @@ gbnf = "0.2.5"
2323
rand = "0.9.2"
2424

2525
[target.'cfg(all(not(target_os = "macos"), not(target_os = "ios"), not(target_os = "android")))'.dependencies]
26-
llama-cpp-2 = { git = "https://github.com/utilityai/llama-cpp-rs", branch = "update-llama-cpp-2025-10-15", features = ["vulkan"] }
27-
llama-cpp-sys-2 = { git = "https://github.com/utilityai/llama-cpp-rs", branch = "update-llama-cpp-2025-10-15", features = ["vulkan"] }
26+
llama-cpp-2 = { version = "0.1.122", features = ["vulkan"] }
27+
llama-cpp-sys-2 = { version = "0.1.122", features = ["vulkan"] }

0 commit comments

Comments
 (0)