From d7418ba709d2ac9251595268dbd12cf9c306e4b7 Mon Sep 17 00:00:00 2001 From: marcus Date: Tue, 2 Jan 2024 12:25:33 -0800 Subject: [PATCH] updated versions in Cargo.toml --- llama-cpp-2/Cargo.toml | 6 +++--- llama-cpp-sys-2/Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/llama-cpp-2/Cargo.toml b/llama-cpp-2/Cargo.toml index c21495aa..602212cd 100644 --- a/llama-cpp-2/Cargo.toml +++ b/llama-cpp-2/Cargo.toml @@ -1,14 +1,14 @@ [package] name = "llama-cpp-2" description = "llama.cpp bindings for Rust" -version = "0.1.0" +version = "0.1.3" edition = "2021" license = "MIT OR Apache-2.0" # 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.0" } +llama-cpp-sys-2 = { path = "../llama-cpp-sys-2", version = "0.1.3" } thiserror = { workspace = true } tracing = { workspace = true } @@ -25,4 +25,4 @@ harness = false cublas = ["llama-cpp-sys-2/cublas"] [lints] -workspace = true \ No newline at end of file +workspace = true diff --git a/llama-cpp-sys-2/Cargo.toml b/llama-cpp-sys-2/Cargo.toml index 495ac46c..4be1dcaf 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.0" +version = "0.1.3" edition = "2021" license = "MIT OR Apache-2.0"