burn/Cargo.toml

109 lines
2.8 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",
"burn-autodiff",
"burn-common",
"burn-compute",
"burn-core",
"burn-dataset",
"burn-derive",
"burn-import",
"burn-import/onnx-tests",
"burn-ndarray",
"burn-no-std-tests",
"burn-tch",
"burn-wgpu",
"burn-candle",
"burn-tensor-testgen",
"burn-tensor",
"burn-train",
"xtask",
"examples/*",
"backend-comparison",
2022-09-05 02:22:56 +08:00
]
2023-09-19 07:56:53 +08:00
exclude = ["examples/notebook"]
2023-08-17 06:17:12 +08:00
[workspace.dependencies]
async-trait = "0.1.73"
bytemuck = "1.13"
const-random = "0.1.15"
2023-06-14 21:55:19 +08:00
csv = "1.2.2"
dashmap = "5.4.0"
2023-05-21 21:07:39 +08:00
dirs = "5.0.1"
fake = "2.6.1"
flate2 = "1.0.26"
float-cmp = "0.9.0"
getrandom = { version = "0.2.10", default-features = false }
2023-09-19 07:56:53 +08:00
gix-tempfile = { version = "8.0.0", features = ["signals"] }
2023-06-14 21:55:19 +08:00
hashbrown = "0.14.0"
indicatif = "0.17.5"
2023-05-21 21:07:39 +08:00
libm = "0.2.7"
log = { default-features = false, version = "0.4.19" }
pretty_assertions = "1.3"
2023-06-14 21:55:19 +08:00
proc-macro2 = "1.0.60"
protobuf-codegen = "3.2"
2023-06-14 21:55:19 +08:00
quote = "1.0.28"
r2d2 = "0.8.10"
2023-09-19 07:56:53 +08:00
r2d2_sqlite = { version = "0.22.0" }
rayon = "1.7.0"
rmp-serde = "1.1.1"
rstest = "0.18.1"
2023-09-19 07:56:53 +08:00
rusqlite = { version = "0.29" }
sanitize-filename = "0.5.0"
2023-05-21 21:07:39 +08:00
serde_rusqlite = "0.33.1"
2023-09-19 07:56:53 +08:00
spin = { version = "0.9.8", features = ["mutex", "spin_mutex"] }
strum = "0.25.0"
strum_macros = "0.25.2"
2023-09-19 07:56:53 +08:00
syn = { version = "2.0", features = ["full", "extra-traits"] }
2023-06-14 21:55:19 +08:00
tempfile = "3.6.0"
thiserror = "1.0.40"
2023-09-01 09:07:26 +08:00
tracing-appender = "0.2.2"
tracing-core = "0.1.31"
tracing-subscriber = "0.3.17"
wasm-bindgen = "0.2.87"
wasm-bindgen-futures = "0.4.37"
wasm-logger = "0.2.0"
2023-06-02 23:52:47 +08:00
# WGPU stuff
futures-intrusive = "0.5"
pollster = "0.3"
2023-09-19 07:56:53 +08:00
text_placeholder = { version = "0.5.0", features = ["struct_context"] }
wgpu = "0.17.0"
#
# The following packages disable the "std" feature for no_std compatibility
#
2023-09-19 07:56:53 +08:00
bincode = { version = "2.0.0-rc.3", features = [
"alloc",
"serde",
2023-09-19 07:56:53 +08:00
], default-features = false }
derive-new = { version = "0.5.9", default-features = false }
2023-09-19 07:56:53 +08:00
half = { version = "2.3.1", features = [
"alloc",
"num-traits",
"serde",
2023-09-19 07:56:53 +08:00
], default-features = false }
ndarray = { version = "0.15.6", default-features = false }
num-traits = { version = "0.2.15", default-features = false, features = [
"libm",
2023-09-19 07:56:53 +08:00
] } # libm is for no_std
rand = { version = "0.8.5", default-features = false, features = [
"std_rng",
2023-09-19 07:56:53 +08:00
] } # std_rng is for no_std
rand_distr = { version = "0.4.3", default-features = false }
serde = { version = "1.0.164", default-features = false, features = [
"derive",
"alloc",
2023-09-19 07:56:53 +08:00
] } # alloc is for no_std, derive is needed
serde_json = { version = "1.0.96", default-features = false }
uuid = { version = "1.3.4", default-features = false }
2023-09-30 03:13:16 +08:00
[profile.dev]
debug = 0 # Speed up compilation time and not necessary.