From 39d1926a13e67644e3cd9dacbeca0c847c971b45 Mon Sep 17 00:00:00 2001 From: gabrielmbmb Date: Thu, 5 Sep 2024 13:39:32 +0200 Subject: [PATCH] Revert "Use `candle` crates.io dependencies" This reverts commit 903e97c06c621bec7b5826879874e746fb3c13d8. --- Cargo.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 2276d45..9e9777d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,10 +20,10 @@ license = "MIT OR Apache-2.0" [workspace.dependencies] anyhow = { version = "1.0.86" } -candle-core = { version = "0.6.0" } -candle-nn = { version = "0.6.0" } -candle-metal-kernels = { version = "0.6.0" } -candle-flash-attn = { version = "0.6.0" } +candle-core = { git = "https://github.com/huggingface/candle", package = "candle-core" } +candle-nn = { git = "https://github.com/huggingface/candle", package = "candle-nn" } +candle-metal-kernels = { git = "https://github.com/huggingface/candle", package = "candle-metal-kernels" } +candle-flash-attn = { git = "https://github.com/huggingface/candle", package = "candle-flash-attn" } dyn-fmt = "0.4.0" hf-hub = "0.3.2" lazy_static = "1.4.0"