diff --git a/Cargo.lock b/Cargo.lock index 162d873..efbc7de 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -352,8 +352,9 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] name = "chat-prompts" -version = "0.17.4" -source = "git+https://github.com/LlamaEdge/LlamaEdge.git?branch=dev#f1bb59085d511b9ed263c7d684c23466220245ca" +version = "0.17.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6e677ccf2b3d3687a4f8bc7bf7841f0a4756048d4d3820dd3a6130d6ce8c7680" dependencies = [ "base64 0.22.1", "clap", @@ -609,8 +610,9 @@ dependencies = [ [[package]] name = "endpoints" -version = "0.17.2" -source = "git+https://github.com/LlamaEdge/LlamaEdge.git?branch=dev#f1bb59085d511b9ed263c7d684c23466220245ca" +version = "0.18.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f83a3ca576cf5f4aa67697494ffdb4854044380356a60c591ffa9d0c3aad4ad8" dependencies = [ "indexmap", "serde", @@ -1409,8 +1411,9 @@ checksum = "643cb0b8d4fcc284004d5fd0d67ccf61dfffadb7f75e1e71bc420f4688a3a704" [[package]] name = "llama-core" -version = "0.22.0" -source = "git+https://github.com/LlamaEdge/LlamaEdge.git?branch=dev#f1bb59085d511b9ed263c7d684c23466220245ca" +version = "0.23.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "923a268409b644890173009f9badb1c3064bc9a1a49b54b2981f004713487564" dependencies = [ "base64 0.22.1", "chat-prompts", diff --git a/Cargo.toml b/Cargo.toml index fe807a0..68fc97e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,11 +6,9 @@ edition = "2021" [dependencies] anyhow = "1" clap = { version = "4.4.6", features = ["cargo", "derive"] } -endpoints = { version = "=0.17.2", git = "https://github.com/LlamaEdge/LlamaEdge.git", branch = "dev" } +endpoints = { version = "=0.18.0" } hyper = { version = "0.14", features = ["full"] } -llama-core = { version = "=0.22.0", features = [ - "logging", -], git = "https://github.com/LlamaEdge/LlamaEdge.git", branch = "dev" } +llama-core = { version = "=0.23.0", features = ["logging"] } log = { version = "0.4.21", features = ["std", "kv", "kv_serde"] } multipart-2021 = "0.19.0" serde = { version = "^1.0", features = ["derive"] }