mirror of
https://github.com/huggingface/candle.git
synced 2025-06-16 10:38:54 +00:00
Factorize the tokenizers version in the workspace cargo def. (#186)
This commit is contained in:
@ -39,7 +39,7 @@ serde = { version = "1.0.166", features = ["derive"] }
|
|||||||
serde_json = "1.0.99"
|
serde_json = "1.0.99"
|
||||||
sha256 = "=1.1.4"
|
sha256 = "=1.1.4"
|
||||||
thiserror = "1"
|
thiserror = "1"
|
||||||
tokenizers = { version = "0.13.3", default-features = false, features = ["onig"] }
|
tokenizers = { version = "0.13.3", default-features = false }
|
||||||
tokio = "1.28.2"
|
tokio = "1.28.2"
|
||||||
tokio-test = "0.4.2"
|
tokio-test = "0.4.2"
|
||||||
tracing = "0.1.37"
|
tracing = "0.1.37"
|
||||||
|
@ -24,7 +24,7 @@ anyhow = { workspace = true }
|
|||||||
candle-hub = { path = "../candle-hub" }
|
candle-hub = { path = "../candle-hub" }
|
||||||
clap = { workspace = true }
|
clap = { workspace = true }
|
||||||
rand = { workspace = true }
|
rand = { workspace = true }
|
||||||
tokenizers = { workspace = true }
|
tokenizers = { workspace = true, features = ["onig"] }
|
||||||
tracing = { workspace = true }
|
tracing = { workspace = true }
|
||||||
tracing-chrome = { workspace = true }
|
tracing-chrome = { workspace = true }
|
||||||
tracing-subscriber = { workspace = true }
|
tracing-subscriber = { workspace = true }
|
||||||
|
@ -15,7 +15,7 @@ candle = { path = "../candle-core" }
|
|||||||
candle-hub = { path = "../candle-hub" }
|
candle-hub = { path = "../candle-hub" }
|
||||||
candle-nn = { path = "../candle-nn" }
|
candle-nn = { path = "../candle-nn" }
|
||||||
intel-mkl-src = { workspace = true, optional = true, features = ["mkl-dynamic-lp64-iomp"]}
|
intel-mkl-src = { workspace = true, optional = true, features = ["mkl-dynamic-lp64-iomp"]}
|
||||||
tokenizers = { workspace = true }
|
tokenizers = { workspace = true, features = ["onig"] }
|
||||||
rand = { workspace = true }
|
rand = { workspace = true }
|
||||||
wav = { workspace = true }
|
wav = { workspace = true }
|
||||||
|
|
||||||
|
@ -14,7 +14,7 @@ readme = "README.md"
|
|||||||
candle = { path = "../candle-core" }
|
candle = { path = "../candle-core" }
|
||||||
candle-nn = { path = "../candle-nn" }
|
candle-nn = { path = "../candle-nn" }
|
||||||
num-traits = { workspace = true }
|
num-traits = { workspace = true }
|
||||||
tokenizers = { version = "0.13.3", default-features = false, features = ["unstable_wasm"] }
|
tokenizers = { workspace = true, features = ["unstable_wasm"] }
|
||||||
|
|
||||||
# App crates.
|
# App crates.
|
||||||
anyhow = { workspace = true }
|
anyhow = { workspace = true }
|
||||||
|
Reference in New Issue
Block a user