From a5e234961c0842fa8b5011dbc750d5815f683b5a Mon Sep 17 00:00:00 2001 From: Gonzalo <456459+grzuy@users.noreply.github.com> Date: Thu, 29 Feb 2024 09:52:07 -0300 Subject: [PATCH] build(deps): start depending on candle stable releases --- native/candlex/Cargo.lock | 10 ++++++---- native/candlex/Cargo.toml | 2 +- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/native/candlex/Cargo.lock b/native/candlex/Cargo.lock index 132801e..845afcb 100644 --- a/native/candlex/Cargo.lock +++ b/native/candlex/Cargo.lock @@ -77,8 +77,9 @@ checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" [[package]] name = "candle-core" -version = "0.4.0" -source = "git+https://github.com/huggingface/candle#cdc3823d8fd71c5cc8aed3bef1f70291b81d6e8a" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6f1b20174c1707e20f4cb364a355b449803c03e9b0c9193324623cf9787a4e00" dependencies = [ "byteorder", "candle-kernels", @@ -99,8 +100,9 @@ dependencies = [ [[package]] name = "candle-kernels" -version = "0.4.0" -source = "git+https://github.com/huggingface/candle#cdc3823d8fd71c5cc8aed3bef1f70291b81d6e8a" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5845911a44164ebb73b56a0e23793ba1b583bad102af7400fe4768babc5815b2" dependencies = [ "bindgen_cuda", ] diff --git a/native/candlex/Cargo.toml b/native/candlex/Cargo.toml index 8039d1a..35968a0 100644 --- a/native/candlex/Cargo.toml +++ b/native/candlex/Cargo.toml @@ -10,7 +10,7 @@ path = "src/lib.rs" crate-type = ["cdylib"] [dependencies] -candle-core = { git = "https://github.com/huggingface/candle" } +candle-core = "0.4.1" half = "2.3.1" num-traits = "0.2.18" rustler = { version = "0.31.0", default-features = false, features = ["derive", "nif_version_2_16"] }