From 00f3db63383488a3732c2079caa2f657f7bf615a Mon Sep 17 00:00:00 2001 From: Xin Liu Date: Fri, 13 Sep 2024 01:48:41 +0900 Subject: [PATCH] chore: update deps Signed-off-by: Xin Liu --- Cargo.lock | 18 +++++++++++------- Cargo.toml | 6 ++---- 2 files changed, 13 insertions(+), 11 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1a5bdb7..be40253 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=feat-sd-negative-prompt#754ce18d52db27a78d12e60fe904b91563e70c59" +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=feat-sd-negative-prompt#754ce18d52db27a78d12e60fe904b91563e70c59" +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=feat-sd-negative-prompt#754ce18d52db27a78d12e60fe904b91563e70c59" +version = "0.17.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "156a38c440d6631239da34d1140df1704ec897082f9898f0bef6829b63c888e8" dependencies = [ "base64 0.22.0", "chat-prompts", @@ -2987,7 +2990,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 d52c57f..30d3c60 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,11 +6,9 @@ edition = "2021" [dependencies] anyhow = "1.0.80" clap = { version = "4.4.6", features = ["cargo", "derive"] } -endpoints = { version = "=0.13.1", git = "https://github.com/LlamaEdge/LlamaEdge.git", branch = "feat-sd-negative-prompt" } +endpoints = { version = "=0.14.0" } hyper = { version = "0.14", features = ["full"] } -llama-core = { version = "=0.16.1", features = [ - "logging", -], git = "https://github.com/LlamaEdge/LlamaEdge.git", branch = "feat-sd-negative-prompt" } +llama-core = { version = "=0.17.0", features = ["logging"] } log = { version = "0.4.21", features = ["std", "kv", "kv_serde"] } multipart-2021 = "0.19.0" serde = { version = "1.0", features = ["derive"] }