diff --git a/Cargo.lock b/Cargo.lock index d26ac347..efa53644 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -267,7 +267,7 @@ checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07" [[package]] name = "embeddings" -version = "0.1.55" +version = "0.1.56" dependencies = [ "anyhow", "clap", @@ -481,7 +481,7 @@ checksum = "c4cd1a83af159aa67994778be9070f0ae1bd732942279cabb14f86f986a21456" [[package]] name = "llama-cpp-2" -version = "0.1.55" +version = "0.1.56" dependencies = [ "llama-cpp-sys-2", "thiserror", @@ -490,7 +490,7 @@ dependencies = [ [[package]] name = "llama-cpp-sys-2" -version = "0.1.55" +version = "0.1.56" dependencies = [ "bindgen", "cc", @@ -928,7 +928,7 @@ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" [[package]] name = "simple" -version = "0.1.55" +version = "0.1.56" dependencies = [ "anyhow", "clap", diff --git a/embeddings/Cargo.toml b/embeddings/Cargo.toml index 524fb90c..e3af112f 100644 --- a/embeddings/Cargo.toml +++ b/embeddings/Cargo.toml @@ -1,12 +1,12 @@ [package] name = "embeddings" -version = "0.1.55" +version = "0.1.56" 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.55" } +llama-cpp-2 = { path = "../llama-cpp-2", version = "0.1.56" } 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 52b9a933..454276d1 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.55" +version = "0.1.56" 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.55" } +llama-cpp-sys-2 = { path = "../llama-cpp-sys-2", version = "0.1.56" } thiserror = { workspace = true } tracing = { workspace = true } diff --git a/llama-cpp-sys-2/Cargo.toml b/llama-cpp-sys-2/Cargo.toml index 09bb64e7..da24c89c 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.55" +version = "0.1.56" 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 729ad939..f46c3b0f 100644 --- a/simple/Cargo.toml +++ b/simple/Cargo.toml @@ -1,12 +1,12 @@ [package] name = "simple" -version = "0.1.55" +version = "0.1.56" 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.55" } +llama-cpp-2 = { path = "../llama-cpp-2", version = "0.1.56" } hf-hub = { workspace = true } clap = { workspace = true , features = ["derive"] } anyhow = { workspace = true }