summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLaurent Mazare <laurent.mazare@gmail.com>2024-01-31 18:57:38 +0100
committerGitHub <noreply@github.com>2024-01-31 18:57:38 +0100
commit9e824ec810fbe490f21b7404058b6cb47d24c6cf (patch)
tree3a7320272d70477d1d0ef60ede76ca77e7e48ff8
parentbeadb1b4345f6794a42cf28b3429f454235f96e8 (diff)
downloadcandle-9e824ec810fbe490f21b7404058b6cb47d24c6cf.tar.gz
candle-9e824ec810fbe490f21b7404058b6cb47d24c6cf.tar.bz2
candle-9e824ec810fbe490f21b7404058b6cb47d24c6cf.zip
Explicit version for packages that are not in the workspace. (#1642)
-rw-r--r--candle-flash-attn/Cargo.toml2
-rw-r--r--candle-onnx/Cargo.toml4
2 files changed, 3 insertions, 3 deletions
diff --git a/candle-flash-attn/Cargo.toml b/candle-flash-attn/Cargo.toml
index d8e8da82..d8da3e90 100644
--- a/candle-flash-attn/Cargo.toml
+++ b/candle-flash-attn/Cargo.toml
@@ -11,7 +11,7 @@ license = "MIT OR Apache-2.0"
readme = "README.md"
[dependencies]
-candle = { path = "../candle-core", features = ["cuda"], package = "candle-core" }
+candle = { path = "../candle-core", features = ["cuda"], package = "candle-core", version = "0.3.3" }
half = { version = "2.3.1", features = ["num-traits"] }
[build-dependencies]
diff --git a/candle-onnx/Cargo.toml b/candle-onnx/Cargo.toml
index de1e3350..6f40eb63 100644
--- a/candle-onnx/Cargo.toml
+++ b/candle-onnx/Cargo.toml
@@ -10,8 +10,8 @@ categories = ["science"]
license = "MIT OR Apache-2.0"
[dependencies]
-candle = { path = "../candle-core", package = "candle-core" }
-candle-nn = { path = "../candle-nn" }
+candle = { path = "../candle-core", package = "candle-core", version = "0.3.3" }
+candle-nn = { path = "../candle-nn", version = "0.3.3" }
prost = "0.12.1"
[build-dependencies]