burn/Cargo.toml

139 lines
3.5 KiB
TOML
Raw Normal View History

2022-09-05 02:22:56 +08:00
[workspace]
2023-11-19 23:35:03 +08:00
# Try
# 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 = [
"backend-comparison",
"crates/*",
"crates/burn-import/pytorch-tests",
"crates/burn-import/onnx-tests",
"examples/*",
"examples/pytorch-import/model",
"xtask",
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.package]
edition = "2021"
2024-02-01 05:01:20 +08:00
version = "0.13.0"
readme = "README.md"
license = "MIT OR Apache-2.0"
[workspace.dependencies]
async-trait = "0.1.74"
bytemuck = "1.14"
candle-core = { version = "0.4.1" }
clap = { version = "4.5.1", features = ["derive"] }
console_error_panic_hook = "0.1.7"
csv = "1.3.0"
dashmap = "5.5.3"
2023-05-21 21:07:39 +08:00
dirs = "5.0.1"
fake = "2.9.1"
flate2 = "1.0.28"
float-cmp = "0.9.0"
getrandom = { version = "0.2.11", default-features = false }
gix-tempfile = { version = "11.0.0", features = ["signals"] }
2024-02-03 05:32:38 +08:00
globwalk = "0.9.1"
hashbrown = "0.14.2"
indicatif = "0.17.8"
js-sys = "0.3.68"
libm = "0.2.8"
Combined PRs (#1439) * Bump web-time from 1.0.0 to 1.1.0 Bumps [web-time](https://github.com/daxpedda/web-time) from 1.0.0 to 1.1.0. - [Release notes](https://github.com/daxpedda/web-time/releases) - [Changelog](https://github.com/daxpedda/web-time/blob/main/CHANGELOG.md) - [Commits](https://github.com/daxpedda/web-time/compare/v1.0.0...v1.1.0) --- updated-dependencies: - dependency-name: web-time dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * Bump rayon from 1.8.1 to 1.9.0 Bumps [rayon](https://github.com/rayon-rs/rayon) from 1.8.1 to 1.9.0. - [Changelog](https://github.com/rayon-rs/rayon/blob/main/RELEASES.md) - [Commits](https://github.com/rayon-rs/rayon/compare/rayon-core-v1.8.1...rayon-core-v1.9.0) --- updated-dependencies: - dependency-name: rayon dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * Bump tempfile from 3.10.0 to 3.10.1 Bumps [tempfile](https://github.com/Stebalien/tempfile) from 3.10.0 to 3.10.1. - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/compare/v3.10.0...v3.10.1) --- updated-dependencies: - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> * Bump the cargo group group with 1 update Bumps the cargo group group with 1 update: [mio](https://github.com/tokio-rs/mio). Updates `mio` from 0.8.10 to 0.8.11 - [Release notes](https://github.com/tokio-rs/mio/releases) - [Changelog](https://github.com/tokio-rs/mio/blob/master/CHANGELOG.md) - [Commits](https://github.com/tokio-rs/mio/compare/v0.8.10...v0.8.11) --- updated-dependencies: - dependency-name: mio dependency-type: indirect dependency-group: cargo-security-group ... Signed-off-by: dependabot[bot] <support@github.com> * Bump log from 0.4.20 to 0.4.21 Bumps [log](https://github.com/rust-lang/log) from 0.4.20 to 0.4.21. - [Release notes](https://github.com/rust-lang/log/releases) - [Changelog](https://github.com/rust-lang/log/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/log/compare/0.4.20...0.4.21) --- updated-dependencies: - dependency-name: log dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2024-03-09 08:27:48 +08:00
log = { default-features = false, version = "0.4.21" }
pretty_assertions = "1.4"
proc-macro2 = "1.0.69"
protobuf = "3.3"
protobuf-codegen = "3.3"
quote = "1.0.33"
r2d2 = "0.8.10"
r2d2_sqlite = { version = "0.23.0" }
Combined PRs (#1439) * Bump web-time from 1.0.0 to 1.1.0 Bumps [web-time](https://github.com/daxpedda/web-time) from 1.0.0 to 1.1.0. - [Release notes](https://github.com/daxpedda/web-time/releases) - [Changelog](https://github.com/daxpedda/web-time/blob/main/CHANGELOG.md) - [Commits](https://github.com/daxpedda/web-time/compare/v1.0.0...v1.1.0) --- updated-dependencies: - dependency-name: web-time dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * Bump rayon from 1.8.1 to 1.9.0 Bumps [rayon](https://github.com/rayon-rs/rayon) from 1.8.1 to 1.9.0. - [Changelog](https://github.com/rayon-rs/rayon/blob/main/RELEASES.md) - [Commits](https://github.com/rayon-rs/rayon/compare/rayon-core-v1.8.1...rayon-core-v1.9.0) --- updated-dependencies: - dependency-name: rayon dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * Bump tempfile from 3.10.0 to 3.10.1 Bumps [tempfile](https://github.com/Stebalien/tempfile) from 3.10.0 to 3.10.1. - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/compare/v3.10.0...v3.10.1) --- updated-dependencies: - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> * Bump the cargo group group with 1 update Bumps the cargo group group with 1 update: [mio](https://github.com/tokio-rs/mio). Updates `mio` from 0.8.10 to 0.8.11 - [Release notes](https://github.com/tokio-rs/mio/releases) - [Changelog](https://github.com/tokio-rs/mio/blob/master/CHANGELOG.md) - [Commits](https://github.com/tokio-rs/mio/compare/v0.8.10...v0.8.11) --- updated-dependencies: - dependency-name: mio dependency-type: indirect dependency-group: cargo-security-group ... Signed-off-by: dependabot[bot] <support@github.com> * Bump log from 0.4.20 to 0.4.21 Bumps [log](https://github.com/rust-lang/log) from 0.4.20 to 0.4.21. - [Release notes](https://github.com/rust-lang/log/releases) - [Changelog](https://github.com/rust-lang/log/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/log/compare/0.4.20...0.4.21) --- updated-dependencies: - dependency-name: log dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2024-03-09 08:27:48 +08:00
rayon = "1.9.0"
regex = "1.10.2"
reqwest = "0.11.24"
rmp-serde = "1.1.2"
rstest = "0.18.2"
rusqlite = { version = "0.30.0" }
rust-format = { version = "0.3.4" }
sanitize-filename = "0.5.0"
serde_rusqlite = "0.34.0"
serde-wasm-bindgen = "0.6.5"
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.3"
2023-09-19 07:56:53 +08:00
syn = { version = "2.0", features = ["full", "extra-traits"] }
Combined PRs (#1439) * Bump web-time from 1.0.0 to 1.1.0 Bumps [web-time](https://github.com/daxpedda/web-time) from 1.0.0 to 1.1.0. - [Release notes](https://github.com/daxpedda/web-time/releases) - [Changelog](https://github.com/daxpedda/web-time/blob/main/CHANGELOG.md) - [Commits](https://github.com/daxpedda/web-time/compare/v1.0.0...v1.1.0) --- updated-dependencies: - dependency-name: web-time dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * Bump rayon from 1.8.1 to 1.9.0 Bumps [rayon](https://github.com/rayon-rs/rayon) from 1.8.1 to 1.9.0. - [Changelog](https://github.com/rayon-rs/rayon/blob/main/RELEASES.md) - [Commits](https://github.com/rayon-rs/rayon/compare/rayon-core-v1.8.1...rayon-core-v1.9.0) --- updated-dependencies: - dependency-name: rayon dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * Bump tempfile from 3.10.0 to 3.10.1 Bumps [tempfile](https://github.com/Stebalien/tempfile) from 3.10.0 to 3.10.1. - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/compare/v3.10.0...v3.10.1) --- updated-dependencies: - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> * Bump the cargo group group with 1 update Bumps the cargo group group with 1 update: [mio](https://github.com/tokio-rs/mio). Updates `mio` from 0.8.10 to 0.8.11 - [Release notes](https://github.com/tokio-rs/mio/releases) - [Changelog](https://github.com/tokio-rs/mio/blob/master/CHANGELOG.md) - [Commits](https://github.com/tokio-rs/mio/compare/v0.8.10...v0.8.11) --- updated-dependencies: - dependency-name: mio dependency-type: indirect dependency-group: cargo-security-group ... Signed-off-by: dependabot[bot] <support@github.com> * Bump log from 0.4.20 to 0.4.21 Bumps [log](https://github.com/rust-lang/log) from 0.4.20 to 0.4.21. - [Release notes](https://github.com/rust-lang/log/releases) - [Changelog](https://github.com/rust-lang/log/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/log/compare/0.4.20...0.4.21) --- updated-dependencies: - dependency-name: log dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2024-03-09 08:27:48 +08:00
tempfile = "3.10.1"
thiserror = "1.0.57"
tokio = { version = "1.36.0", features = ["rt", "macros"] }
tracing-appender = "0.2.3"
tracing-core = "0.1.32"
tracing-subscriber = "0.3.18"
wasm-bindgen = "0.2.88"
wasm-bindgen-futures = "0.4.41"
wasm-logger = "0.2.0"
wasm-timer = "0.2.5"
md5 = "0.7.0"
serial_test = "3.0.0"
Combined PRs (#1439) * Bump web-time from 1.0.0 to 1.1.0 Bumps [web-time](https://github.com/daxpedda/web-time) from 1.0.0 to 1.1.0. - [Release notes](https://github.com/daxpedda/web-time/releases) - [Changelog](https://github.com/daxpedda/web-time/blob/main/CHANGELOG.md) - [Commits](https://github.com/daxpedda/web-time/compare/v1.0.0...v1.1.0) --- updated-dependencies: - dependency-name: web-time dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * Bump rayon from 1.8.1 to 1.9.0 Bumps [rayon](https://github.com/rayon-rs/rayon) from 1.8.1 to 1.9.0. - [Changelog](https://github.com/rayon-rs/rayon/blob/main/RELEASES.md) - [Commits](https://github.com/rayon-rs/rayon/compare/rayon-core-v1.8.1...rayon-core-v1.9.0) --- updated-dependencies: - dependency-name: rayon dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * Bump tempfile from 3.10.0 to 3.10.1 Bumps [tempfile](https://github.com/Stebalien/tempfile) from 3.10.0 to 3.10.1. - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/compare/v3.10.0...v3.10.1) --- updated-dependencies: - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> * Bump the cargo group group with 1 update Bumps the cargo group group with 1 update: [mio](https://github.com/tokio-rs/mio). Updates `mio` from 0.8.10 to 0.8.11 - [Release notes](https://github.com/tokio-rs/mio/releases) - [Changelog](https://github.com/tokio-rs/mio/blob/master/CHANGELOG.md) - [Commits](https://github.com/tokio-rs/mio/compare/v0.8.10...v0.8.11) --- updated-dependencies: - dependency-name: mio dependency-type: indirect dependency-group: cargo-security-group ... Signed-off-by: dependabot[bot] <support@github.com> * Bump log from 0.4.20 to 0.4.21 Bumps [log](https://github.com/rust-lang/log) from 0.4.20 to 0.4.21. - [Release notes](https://github.com/rust-lang/log/releases) - [Changelog](https://github.com/rust-lang/log/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/log/compare/0.4.20...0.4.21) --- updated-dependencies: - dependency-name: log dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2024-03-09 08:27:48 +08:00
web-time = "1.1.0"
hound = "3.5.1"
image = "0.24.9"
zip = "0.6.6"
2024-02-01 00:26:09 +08:00
# Terminal UI
ratatui = "0.25"
crossterm = "0.27"
2023-06-02 23:52:47 +08:00
# WGPU stuff
futures-intrusive = "0.5"
text_placeholder = "0.5.0"
2023-06-02 23:52:47 +08:00
pollster = "0.3"
wgpu = "0.18.0"
# Burnbench
arboard = "3.3.1"
github-device-flow = "0.2.0"
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 }
#
# The following packages disable the "std" feature for no_std compatibility
#
derive-new = { version = "0.6.0", 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 }
matrixmultiply = { version = "0.3.8", default-features = false }
openblas-src = "0.10.9"
blas-src = { version = "0.9.0", default-features = false }
num-traits = { version = "0.2.18", 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",
] } # std_rng is for no_std
2023-09-19 07:56:53 +08:00
rand_distr = { version = "0.4.3", default-features = false }
serde = { version = "1.0.197", 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.114", default-features = false }
uuid = { version = "1.5.0", default-features = false }
2023-09-30 03:13:16 +08:00
libc = "0.2.153"
tch = "0.15.0"
nvml-wrapper = "0.9.0"
sysinfo = "0.29.10"
systemstat = "0.2.3"
2023-09-30 03:13:16 +08:00
[profile.dev]
2024-01-23 22:50:51 +08:00
debug = 0 # Speed up compilation time and not necessary.