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-wasm-examples/llama2-c | |
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-wasm-examples/llama2-c')
-rw-r--r-- | candle-wasm-examples/llama2-c/Cargo.toml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/candle-wasm-examples/llama2-c/Cargo.toml b/candle-wasm-examples/llama2-c/Cargo.toml index 63f8a9c5..ac89a558 100644 --- a/candle-wasm-examples/llama2-c/Cargo.toml +++ b/candle-wasm-examples/llama2-c/Cargo.toml @@ -9,9 +9,9 @@ categories.workspace = true license.workspace = true [dependencies] -candle = { path = "../../candle-core", version = "0.3.3", package = "candle-core" } -candle-nn = { path = "../../candle-nn", version = "0.3.3" } -candle-transformers = { path = "../../candle-transformers", version = "0.3.3" } +candle = { workspace = true } +candle-nn = { workspace = true } +candle-transformers = { workspace = true } num-traits = { workspace = true } tokenizers = { workspace = true, features = ["unstable_wasm"] } |