From 66e54d3fb651b5f455830cc7b3787b11dcbede00 Mon Sep 17 00:00:00 2001 From: Xin Liu Date: Fri, 13 Sep 2024 01:23:25 +0900 Subject: [PATCH] version: bump to `0.9.3` Signed-off-by: Xin Liu --- Cargo.lock | 20 ++++++++++++-------- Cargo.toml | 10 ++++------ 2 files changed, 16 insertions(+), 14 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 2d64564..fc00690 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -349,8 +349,9 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] name = "chat-prompts" -version = "0.13.0" -source = "git+https://github.com/LlamaEdge/LlamaEdge.git?branch=dev#acf8922748e97335bef86384f4071b4a997a51ab" +version = "0.14.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7bef02728dfb6d09320872300ed520d5c3ce475350737c13b911693a78981817" dependencies = [ "base64 0.22.0", "clap", @@ -537,8 +538,9 @@ dependencies = [ [[package]] name = "endpoints" -version = "0.13.1" -source = "git+https://github.com/LlamaEdge/LlamaEdge.git?branch=dev#acf8922748e97335bef86384f4071b4a997a51ab" +version = "0.14.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4a2d90a9f3f2b6751f4147a74656bc2e7ab8ea335855d4e2d038f3e585b4c58e" dependencies = [ "indexmap", "serde", @@ -1158,8 +1160,9 @@ checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89" [[package]] name = "llama-core" -version = "0.16.1" -source = "git+https://github.com/LlamaEdge/LlamaEdge.git?branch=dev#acf8922748e97335bef86384f4071b4a997a51ab" +version = "0.17.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "156a38c440d6631239da34d1140df1704ec897082f9898f0bef6829b63c888e8" dependencies = [ "base64 0.22.0", "chat-prompts", @@ -1684,7 +1687,7 @@ dependencies = [ [[package]] name = "rag-api-server" -version = "0.9.2" +version = "0.9.3" dependencies = [ "anyhow", "chat-prompts", @@ -3035,7 +3038,8 @@ dependencies = [ [[package]] name = "wasmedge_stable_diffusion" version = "0.2.1" -source = "git+https://github.com/apepkuss/wasmedge-stable-diffusion.git?branch=feat-extend-basefunction-trait#b98580b25a02d17c15bdf1cb7f6a2fd09570e7eb" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f8fb1b65c6fd223a48f25348c20c7a26d9b7bcec82ba80ac95bd31c78992edad" dependencies = [ "thiserror", ] diff --git a/Cargo.toml b/Cargo.toml index ff15460..92d5498 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,21 +1,19 @@ [package] name = "rag-api-server" -version = "0.9.2" +version = "0.9.3" edition = "2021" [dependencies] anyhow = "1.0.80" -chat-prompts = { version = "=0.13.0", git = "https://github.com/LlamaEdge/LlamaEdge.git", branch = "dev" } +chat-prompts = { version = "=0.14.0" } chrono = "0.4.38" clap = { version = "4.4.6", features = ["cargo"] } either = "1.12.0" -endpoints = { version = "=0.13.1", git = "https://github.com/LlamaEdge/LlamaEdge.git", branch = "dev" } +endpoints = { version = "=0.14.0" } futures = { version = "0.3.6", default-features = false, features = ["async-await", "std"] } futures-util = "0.3" hyper = { version = "0.14", features = ["full"] } -llama-core = { version = "=0.16.1", features = [ - "logging", -], git = "https://github.com/LlamaEdge/LlamaEdge.git", branch = "dev" } +llama-core = { version = "=0.17.0", features = ["logging"] } log = { version = "0.4.21", features = ["std", "kv", "kv_serde"] } mime_guess = "2.0.4" multipart-2021 = "0.19.0"