summaryrefslogtreecommitdiff
path: root/candle-examples
diff options
context:
space:
mode:
authorLaurent Mazare <laurent.mazare@gmail.com>2023-08-02 10:52:13 +0100
committerGitHub <noreply@github.com>2023-08-02 10:52:13 +0100
commitd38943aadcd30aa2959a515e5526b882415ab31e (patch)
treeaf18e72654c14cdf3baaa07c594e2600ca079d8a /candle-examples
parent51e51da89687dc4678f64377e1c9ef7a74fb410e (diff)
downloadcandle-d38943aadcd30aa2959a515e5526b882415ab31e.tar.gz
candle-d38943aadcd30aa2959a515e5526b882415ab31e.tar.bz2
candle-d38943aadcd30aa2959a515e5526b882415ab31e.zip
Add version numbers for all the candle crates (#303)
* Switch to candle-gemm for the time being. * Add the missing versions.
Diffstat (limited to 'candle-examples')
-rw-r--r--candle-examples/Cargo.toml8
1 files changed, 4 insertions, 4 deletions
diff --git a/candle-examples/Cargo.toml b/candle-examples/Cargo.toml
index b05799ac..b0529448 100644
--- a/candle-examples/Cargo.toml
+++ b/candle-examples/Cargo.toml
@@ -11,10 +11,10 @@ license = "MIT/Apache-2.0"
readme = "README.md"
[dependencies]
-candle = { path = "../candle-core", package = "candle-core" }
-candle-nn = { path = "../candle-nn" }
-candle-transformers = { path = "../candle-transformers" }
-candle-flash-attn = { path = "../candle-flash-attn", optional = true }
+candle = { path = "../candle-core", version = "0.1.0", package = "candle-core" }
+candle-nn = { path = "../candle-nn", version = "0.1.0" }
+candle-transformers = { path = "../candle-transformers", version = "0.1.0" }
+candle-flash-attn = { path = "../candle-flash-attn", version = "0.1.0", optional = true }
safetensors = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }