From b1d3682fa1e0e39b6debc6c2400891a309ab5d13 Mon Sep 17 00:00:00 2001 From: Xin Liu Date: Wed, 10 Apr 2024 14:06:02 +0800 Subject: [PATCH] chore: update deps Signed-off-by: Xin Liu --- Cargo.lock | 12 +++++++++--- Cargo.toml | 6 +++--- 2 files changed, 12 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 6c23267..a00185e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -311,7 +311,9 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] name = "chat-prompts" -version = "0.5.4" +version = "0.5.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b5b0aa9e7310d72a266801833b1d54fb9a357a4e8a1081a15d150e759a1669e9" dependencies = [ "base64 0.22.0", "clap", @@ -488,7 +490,9 @@ dependencies = [ [[package]] name = "endpoints" -version = "0.5.3" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8db776ef42d2d6909c08534e3c8be8a4036d8771cb63d646d7fdc5e1adf2b670" dependencies = [ "serde", "url 2.5.0", @@ -1085,7 +1089,9 @@ checksum = "01cda141df6706de531b6c46c3a33ecca755538219bd484262fa09410c13539c" [[package]] name = "llama-core" -version = "0.6.3" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "260ae65b62b2459a724ef4aa4eb9f71dc583459d87c9dd2f003740df0de7fdbb" dependencies = [ "chat-prompts", "endpoints", diff --git a/Cargo.toml b/Cargo.toml index f8d6854..c7f9b1a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,12 +4,12 @@ version = "0.2.0" edition = "2021" [dependencies] -llama-core = { path = "/Volumes/Dev/secondstate/me/LlamaEdge/api-server/llama-core", version = "^0.6" } +llama-core = { version = "^0.7" } futures = { version = "0.3.6", default-features = false, features = ["async-await", "std"] } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" -endpoints = { path = "/Volumes/Dev/secondstate/me/LlamaEdge/api-server/endpoints", version = "^0.5" } -chat-prompts = { path = "/Volumes/Dev/secondstate/me/LlamaEdge/api-server/chat-prompts", version = "^0.5" } +endpoints = { version = "^0.6" } +chat-prompts = { version = "^0.5" } serde_yaml = "0.9" hyper_wasi = { version = "0.15", features = ["full"] } tokio_wasi = { version = "1", features = ["full"] }