burn/Cargo.toml

51 lines
1.6 KiB
TOML
Raw Normal View History

2022-09-05 02:22:56 +08:00
[workspace]
# require version 2 to avoid "feature" additiveness for dev-dependencies
# https://doc.rust-lang.org/cargo/reference/resolver.html#feature-resolver-version-2
resolver = "2"
2022-09-05 02:22:56 +08:00
members = [
"burn",
2023-01-02 08:21:08 +08:00
"burn-core",
"burn-train",
2022-09-05 02:22:56 +08:00
"burn-derive",
"burn-tensor",
2022-11-17 10:02:32 +08:00
"burn-tensor-testgen",
2022-09-05 02:22:56 +08:00
"burn-dataset",
2022-11-16 10:06:40 +08:00
"burn-tch",
2022-11-19 09:37:38 +08:00
"burn-ndarray",
2022-11-20 01:37:06 +08:00
"burn-autodiff",
"burn-common",
"burn-no-std-tests",
2022-10-27 06:08:38 +08:00
"examples/*",
2022-09-05 02:22:56 +08:00
]
[workspace.dependencies]
const-random = "0.1.15"
dashmap = "5.4.0"
dirs = "4.0.0"
fake = "2.5.0"
flate2 = "1.0.25"
2023-03-21 00:01:55 +08:00
half = {version = "2", features = ["alloc", "num-traits"], default-features = false}
hashbrown = "0.13.2"
indicatif = "0.17.3"
libm = "0.2.6"
log = "0.4.17"
log4rs = "1.2.0"
spin = {version = "0.9.5", features = ["mutex", "spin_mutex"]}
thiserror = "1.0.39"
#
# The following packages disable the "std" feature for no_std compatibility
#
derive-new = {version = "0.5.9", default-features = false}
ndarray = {version = "0.15.6", default-features = false}
num-traits = {version = "0.2.15", default-features = false, features = ["libm"]}# libm is for no_std
rand = {version = "0.8.5", default-features = false, features = ["std_rng"]}# std_rng is for no_std
rand_distr = {version = "0.4.3", default-features = false}
uuid = {version = "1.3.0", default-features = false}
serde = {version = "1.0.155", default-features = false, features = ["derive", "alloc"]}# alloc is for no_std, derive is needed
serde_json = {version = "1.0.94", default-features = false}
rmp-serde = {version = "1.1.1"}
bincode = {version = "2.0.0-rc", features=["alloc", "serde"], default-features = false}