2023-06-22 16:59:00 +08:00
|
|
|
[workspace]
|
|
|
|
members = [
|
2023-06-27 17:57:27 +08:00
|
|
|
"candle-core",
|
2023-07-03 18:30:58 +08:00
|
|
|
"candle-examples",
|
2023-07-10 15:50:09 +08:00
|
|
|
"candle-nn",
|
2023-07-15 02:54:38 +08:00
|
|
|
"candle-pyo3",
|
2023-07-12 20:49:31 +08:00
|
|
|
"candle-transformers",
|
2023-07-24 19:36:02 +08:00
|
|
|
"candle-wasm-examples/llama2-c",
|
|
|
|
"candle-wasm-examples/whisper",
|
2023-06-22 16:59:00 +08:00
|
|
|
]
|
2023-07-14 22:52:15 +08:00
|
|
|
exclude = [
|
2023-07-26 14:48:10 +08:00
|
|
|
"candle-flash-attn",
|
2023-07-14 22:52:15 +08:00
|
|
|
"candle-kernels",
|
|
|
|
]
|
2023-07-07 02:01:21 +08:00
|
|
|
|
2023-07-16 14:47:17 +08:00
|
|
|
[workspace.dependencies]
|
|
|
|
anyhow = { version = "1", features = ["backtrace"] }
|
|
|
|
byteorder = "1.4.3"
|
|
|
|
clap = { version = "4.2.4", features = ["derive"] }
|
2023-08-02 12:54:28 +08:00
|
|
|
cudarc = { version = "0.9.13", features = ["f16"] }
|
2023-08-02 17:52:13 +08:00
|
|
|
# TODO: Switch back to the official gemm implementation once it has caught up.
|
|
|
|
gemm = { version = "0.15.5", package = "candle-gemm" }
|
2023-07-28 02:05:02 +08:00
|
|
|
hf-hub = "0.2.0"
|
2023-07-27 14:40:36 +08:00
|
|
|
half = { version = "2.3.1", features = ["num-traits", "rand_distr"] }
|
2023-07-20 02:41:11 +08:00
|
|
|
intel-mkl-src = { version = "0.8.1", features = ["mkl-static-lp64-iomp"] }
|
2023-07-16 14:47:17 +08:00
|
|
|
libc = { version = "0.2.147" }
|
|
|
|
log = "0.4"
|
|
|
|
memmap2 = "0.7.1"
|
|
|
|
num_cpus = "1.15.0"
|
|
|
|
num-traits = "0.2.15"
|
|
|
|
rand = "0.8.5"
|
|
|
|
safetensors = "0.3.1"
|
2023-07-19 21:04:38 +08:00
|
|
|
serde = { version = "1.0.171", features = ["derive"] }
|
2023-07-16 14:47:17 +08:00
|
|
|
serde_json = "1.0.99"
|
|
|
|
thiserror = "1"
|
2023-07-18 13:48:13 +08:00
|
|
|
tokenizers = { version = "0.13.3", default-features = false }
|
2023-07-18 02:40:42 +08:00
|
|
|
tracing = "0.1.37"
|
|
|
|
tracing-chrome = "0.7.1"
|
|
|
|
tracing-subscriber = "0.3.7"
|
2023-07-16 14:47:17 +08:00
|
|
|
wav = "1.0.0"
|
|
|
|
zip = { version = "0.6.6", default-features = false }
|
|
|
|
|
2023-07-07 02:01:21 +08:00
|
|
|
[profile.release-with-debug]
|
|
|
|
inherits = "release"
|
|
|
|
debug = true
|