diff options
author | Nicolas Patry <patry.nicolas@protonmail.com> | 2024-01-07 12:04:14 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-07 12:04:14 +0100 |
commit | b4cb982e498fc121992e7c03d00d04755a66001f (patch) | |
tree | 6a176b7a2b9c942603a1ae17b1224fd19c2d6976 /candle-book | |
parent | 84250bf52f58528cf59dca3b82effd9f07a13cc7 (diff) | |
download | candle-b4cb982e498fc121992e7c03d00d04755a66001f.tar.gz candle-b4cb982e498fc121992e7c03d00d04755a66001f.tar.bz2 candle-b4cb982e498fc121992e7c03d00d04755a66001f.zip |
Simplifying our internal cargo dependencies. (#1529)
Diffstat (limited to 'candle-book')
-rw-r--r-- | candle-book/Cargo.toml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/candle-book/Cargo.toml b/candle-book/Cargo.toml index e28e6623..5ccda31e 100644 --- a/candle-book/Cargo.toml +++ b/candle-book/Cargo.toml @@ -11,11 +11,11 @@ readme = "README.md" [dependencies] accelerate-src = { workspace = true, optional = true } -candle = { path = "../candle-core", version = "0.3.3", package = "candle-core" } -candle-datasets = { path = "../candle-datasets", version = "0.3.3" } -candle-nn = { path = "../candle-nn", version = "0.3.3" } -candle-transformers = { path = "../candle-transformers", version = "0.3.3" } -candle-flash-attn = { path = "../candle-flash-attn", version = "0.3.3", optional = true } +candle = { workspace = true } +candle-datasets = { workspace = true } +candle-nn = { workspace = true } +candle-transformers = { workspace = true } +candle-flash-attn = { workspace = true, optional = true } safetensors = { workspace = true } serde = { workspace = true } serde_json = { workspace = true } |