2022-09-05 02:22:56 +08:00
|
|
|
[workspace]
|
2023-02-21 21:35:24 +08:00
|
|
|
# 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-04-15 22:44:50 +08:00
|
|
|
"burn-autodiff",
|
|
|
|
"burn-common",
|
2023-01-02 08:21:08 +08:00
|
|
|
"burn-core",
|
2022-09-05 02:22:56 +08:00
|
|
|
"burn-dataset",
|
2023-04-15 22:44:50 +08:00
|
|
|
"burn-derive",
|
|
|
|
"burn-import",
|
2023-08-05 04:51:51 +08:00
|
|
|
"burn-import/onnx-tests",
|
2022-11-19 09:37:38 +08:00
|
|
|
"burn-ndarray",
|
2023-02-25 22:38:01 +08:00
|
|
|
"burn-no-std-tests",
|
2023-04-15 22:44:50 +08:00
|
|
|
"burn-tch",
|
2023-06-02 23:52:47 +08:00
|
|
|
"burn-wgpu",
|
2023-04-15 22:44:50 +08:00
|
|
|
"burn-tensor-testgen",
|
|
|
|
"burn-tensor",
|
|
|
|
"burn-train",
|
2022-10-27 06:08:38 +08:00
|
|
|
"examples/*",
|
2022-09-05 02:22:56 +08:00
|
|
|
]
|
2023-02-25 22:38:01 +08:00
|
|
|
|
|
|
|
[workspace.dependencies]
|
2023-05-04 01:05:43 +08:00
|
|
|
bytemuck = "1.13"
|
2023-02-25 22:38:01 +08:00
|
|
|
const-random = "0.1.15"
|
2023-06-14 21:55:19 +08:00
|
|
|
csv = "1.2.2"
|
2023-02-25 22:38:01 +08:00
|
|
|
dashmap = "5.4.0"
|
2023-05-21 21:07:39 +08:00
|
|
|
dirs = "5.0.1"
|
|
|
|
fake = "2.6.1"
|
2023-05-04 01:05:43 +08:00
|
|
|
flate2 = "1.0.26"
|
2023-08-05 04:51:51 +08:00
|
|
|
float-cmp = "0.9.0"
|
2023-06-27 04:39:33 +08:00
|
|
|
gix-tempfile = {version = "7.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"
|
2023-06-14 21:55:19 +08:00
|
|
|
log = "0.4.19"
|
2023-02-25 22:38:01 +08:00
|
|
|
log4rs = "1.2.0"
|
2023-05-04 01:05:43 +08:00
|
|
|
pretty_assertions = "1.3"
|
2023-06-14 21:55:19 +08:00
|
|
|
proc-macro2 = "1.0.60"
|
2023-05-04 01:05:43 +08:00
|
|
|
protobuf-codegen = "3.2"
|
2023-06-14 21:55:19 +08:00
|
|
|
quote = "1.0.28"
|
2023-05-21 02:24:55 +08:00
|
|
|
r2d2 = "0.8.10"
|
2023-05-27 06:09:01 +08:00
|
|
|
r2d2_sqlite = {version = "0.22.0", features = ["bundled"]}
|
2023-05-21 02:24:55 +08:00
|
|
|
rayon = "1.7.0"
|
2023-06-01 21:54:50 +08:00
|
|
|
rmp-serde = "1.1.1"
|
2023-07-06 05:45:47 +08:00
|
|
|
rstest = "0.18.1"
|
2023-05-27 06:09:01 +08:00
|
|
|
rusqlite = {version = "0.29", features = ["bundled-full"]}
|
2023-08-01 20:30:49 +08:00
|
|
|
sanitize-filename = "0.5.0"
|
2023-05-21 21:07:39 +08:00
|
|
|
serde_rusqlite = "0.33.1"
|
2023-05-04 01:05:43 +08:00
|
|
|
spin = {version = "0.9.8", features = ["mutex", "spin_mutex"]}
|
2023-04-15 22:44:50 +08:00
|
|
|
strum = "0.24"
|
|
|
|
strum_macros = "0.24"
|
2023-06-29 00:50:28 +08:00
|
|
|
syn = {version = "2.0", features = ["full", "extra-traits"]}
|
2023-06-14 21:55:19 +08:00
|
|
|
tempfile = "3.6.0"
|
2023-05-04 01:05:43 +08:00
|
|
|
thiserror = "1.0.40"
|
2023-06-02 23:52:47 +08:00
|
|
|
|
|
|
|
# WGPU stuff
|
|
|
|
futures-intrusive = "0.5"
|
|
|
|
pollster = "0.3"
|
2023-06-27 03:59:06 +08:00
|
|
|
text_placeholder = {version = "0.5.0", features = ["struct_context"]}
|
2023-07-25 01:00:22 +08:00
|
|
|
wgpu = "0.17.0"
|
2023-06-15 23:59:37 +08:00
|
|
|
|
2023-02-25 22:38:01 +08:00
|
|
|
#
|
|
|
|
# The following packages disable the "std" feature for no_std compatibility
|
|
|
|
#
|
2023-05-21 21:07:39 +08:00
|
|
|
bincode = {version = "2.0.0-rc.3", features = ["alloc", "serde"], default-features = false}
|
2023-02-25 22:38:01 +08:00
|
|
|
derive-new = {version = "0.5.9", default-features = false}
|
2023-06-27 03:59:06 +08:00
|
|
|
half = {version = "2.3.1", features = ["alloc", "num-traits", "serde"], default-features = false}
|
2023-02-25 22:38:01 +08:00
|
|
|
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}
|
2023-06-14 21:55:19 +08:00
|
|
|
serde = {version = "1.0.164", default-features = false, features = ["derive", "alloc"]}# alloc is for no_std, derive is needed
|
2023-05-04 01:05:43 +08:00
|
|
|
serde_json = {version = "1.0.96", default-features = false}
|
2023-06-14 21:55:19 +08:00
|
|
|
uuid = {version = "1.3.4", default-features = false}
|