diff --git a/Cargo.lock b/Cargo.lock index 15a0d92a..81a0f8f9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -267,7 +267,7 @@ checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07" [[package]] name = "embeddings" -version = "0.1.47" +version = "0.1.48" dependencies = [ "anyhow", "clap", @@ -481,7 +481,7 @@ checksum = "c4cd1a83af159aa67994778be9070f0ae1bd732942279cabb14f86f986a21456" [[package]] name = "llama-cpp-2" -version = "0.1.47" +version = "0.1.48" dependencies = [ "llama-cpp-sys-2", "thiserror", @@ -490,7 +490,7 @@ dependencies = [ [[package]] name = "llama-cpp-sys-2" -version = "0.1.47" +version = "0.1.48" dependencies = [ "bindgen", "cc", @@ -912,7 +912,7 @@ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" [[package]] name = "simple" -version = "0.1.47" +version = "0.1.48" dependencies = [ "anyhow", "clap", diff --git a/embeddings/Cargo.toml b/embeddings/Cargo.toml index 7fecd436..ae79da87 100644 --- a/embeddings/Cargo.toml +++ b/embeddings/Cargo.toml @@ -1,12 +1,12 @@ [package] name = "embeddings" -version = "0.1.47" +version = "0.1.48" 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.47" } +llama-cpp-2 = { path = "../llama-cpp-2", version = "0.1.48" } 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 5fdedf12..4865d460 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.47" +version = "0.1.48" 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.47" } +llama-cpp-sys-2 = { path = "../llama-cpp-sys-2", version = "0.1.48" } thiserror = { workspace = true } tracing = { workspace = true } diff --git a/llama-cpp-sys-2/Cargo.toml b/llama-cpp-sys-2/Cargo.toml index 820bf61a..37eac82d 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.47" +version = "0.1.48" 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 535c8d4b..3db739d1 100644 --- a/simple/Cargo.toml +++ b/simple/Cargo.toml @@ -1,12 +1,12 @@ [package] name = "simple" -version = "0.1.47" +version = "0.1.48" 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.47" } +llama-cpp-2 = { path = "../llama-cpp-2", version = "0.1.48" } hf-hub = { workspace = true } clap = { workspace = true , features = ["derive"] } anyhow = { workspace = true }