diff --git a/Cargo.lock b/Cargo.lock index 2a624c00..3a48db06 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -724,7 +724,7 @@ checksum = "c4cd1a83af159aa67994778be9070f0ae1bd732942279cabb14f86f986a21456" [[package]] name = "llama-cpp-2" -version = "0.1.37" +version = "0.1.38" dependencies = [ "criterion", "hf-hub", @@ -736,7 +736,7 @@ dependencies = [ [[package]] name = "llama-cpp-sys-2" -version = "0.1.37" +version = "0.1.38" dependencies = [ "bindgen", "cc", diff --git a/embeddings/Cargo.toml b/embeddings/Cargo.toml index 97cb8f25..78b8d636 100644 --- a/embeddings/Cargo.toml +++ b/embeddings/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -llama-cpp-2 = { path = "../llama-cpp-2", version = "0.1.37" } +llama-cpp-2 = { path = "../llama-cpp-2", version = "0.1.38" } hf-hub = { workspace = true } clap = { workspace = true , features = ["derive"] } anyhow = { workspace = true } diff --git a/llama-cpp-2/Cargo.toml b/llama-cpp-2/Cargo.toml index 5e72f3a4..57ac448d 100644 --- a/llama-cpp-2/Cargo.toml +++ b/llama-cpp-2/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "llama-cpp-2" description = "llama.cpp bindings for Rust" -version = "0.1.37" +version = "0.1.38" edition = "2021" license = "MIT OR Apache-2.0" repository = "https://github.com/utilityai/llama-cpp-rs" @@ -9,7 +9,7 @@ repository = "https://github.com/utilityai/llama-cpp-rs" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -llama-cpp-sys-2 = { path = "../llama-cpp-sys-2", version = "0.1.37" } +llama-cpp-sys-2 = { path = "../llama-cpp-sys-2", version = "0.1.38" } thiserror = { workspace = true } tracing = { workspace = true } diff --git a/llama-cpp-sys-2/Cargo.toml b/llama-cpp-sys-2/Cargo.toml index 03fe0d4e..ed2e882f 100644 --- a/llama-cpp-sys-2/Cargo.toml +++ b/llama-cpp-sys-2/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "llama-cpp-sys-2" description = "Low Level Bindings to llama.cpp" -version = "0.1.37" +version = "0.1.38" edition = "2021" license = "MIT OR Apache-2.0" repository = "https://github.com/utilityai/llama-cpp-rs" diff --git a/simple/Cargo.toml b/simple/Cargo.toml index e45e7bd3..98fba60b 100644 --- a/simple/Cargo.toml +++ b/simple/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -llama-cpp-2 = { path = "../llama-cpp-2", version = "0.1.37" } +llama-cpp-2 = { path = "../llama-cpp-2", version = "0.1.38" } hf-hub = { workspace = true } clap = { workspace = true , features = ["derive"] } anyhow = { workspace = true }