From 1197ee916266c4c015317fea05cf67897fe3b94a Mon Sep 17 00:00:00 2001 From: Xin Liu Date: Wed, 3 Jul 2024 15:13:19 +0800 Subject: [PATCH] chore: update deps Signed-off-by: Xin Liu --- Cargo.lock | 12 +++++++++--- Cargo.toml | 8 +++----- 2 files changed, 12 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 321c2a9..9873b2d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -311,7 +311,9 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] name = "chat-prompts" -version = "0.8.0" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "00ff99ad09aca014de8b75a2bdf2d59b305bf3149787ee2fbf6dd869c3bbbf4e" dependencies = [ "base64 0.22.0", "clap", @@ -488,7 +490,9 @@ dependencies = [ [[package]] name = "endpoints" -version = "0.8.2" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3f9a51547bace9eddeb42514b2a0393edaf765606490cf267b708030237b3dc5" dependencies = [ "indexmap 2.2.6", "serde", @@ -1118,7 +1122,9 @@ checksum = "01cda141df6706de531b6c46c3a33ecca755538219bd484262fa09410c13539c" [[package]] name = "llama-core" -version = "0.11.2" +version = "0.12.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4fc11b42ca355dfd20f3e3a3b848e2063ebe98324c787654340c0fb6a932c442" dependencies = [ "chat-prompts", "either", diff --git a/Cargo.toml b/Cargo.toml index e9f7616..0ac81dd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,11 +4,9 @@ version = "0.7.1" edition = "2021" [dependencies] -endpoints = { version = "=0.8.2", path = "/Volumes/Dev/secondstate/me/LlamaEdge/api-server/endpoints" } -chat-prompts = { version = "=0.8.0", path = "/Volumes/Dev/secondstate/me/LlamaEdge/api-server/chat-prompts" } -llama-core = { version = "=0.11.2", features = [ - "logging", -], path = "/Volumes/Dev/secondstate/me/LlamaEdge/api-server/llama-core" } +endpoints = { version = "=0.10.0" } +chat-prompts = { version = "=0.9.0" } +llama-core = { version = "=0.12.0", features = ["logging"] } futures = { version = "0.3.6", default-features = false, features = ["async-await", "std"] } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0"