Skip to content

Commit

Permalink
Upgrade dependency versions (#854)
Browse files Browse the repository at this point in the history
This updates dependencies including tch to 0.14.0, which uses Torch 2.1.
  • Loading branch information
antimora authored Oct 9, 2023
1 parent 6c125e1 commit 097fd95
Show file tree
Hide file tree
Showing 6 changed files with 30 additions and 30 deletions.
46 changes: 23 additions & 23 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,38 +30,38 @@ exclude = ["examples/notebook"]

[workspace.dependencies]
async-trait = "0.1.73"
bytemuck = "1.13"
bytemuck = "1.14"
const-random = "0.1.15"
csv = "1.2.2"
dashmap = "5.4.0"
csv = "1.3.0"
dashmap = "5.5.3"
dirs = "5.0.1"
fake = "2.6.1"
flate2 = "1.0.26"
fake = "2.8.0"
flate2 = "1.0.27"
float-cmp = "0.9.0"
getrandom = { version = "0.2.10", default-features = false }
gix-tempfile = { version = "8.0.0", features = ["signals"] }
hashbrown = "0.14.0"
indicatif = "0.17.5"
libm = "0.2.7"
log = { default-features = false, version = "0.4.19" }
pretty_assertions = "1.3"
proc-macro2 = "1.0.60"
protobuf-codegen = "3.2"
quote = "1.0.28"
hashbrown = "0.14.1"
indicatif = "0.17.7"
libm = "0.2.8"
log = { default-features = false, version = "0.4.20" }
pretty_assertions = "1.4"
proc-macro2 = "1.0.68"
protobuf-codegen = "3.3"
quote = "1.0.33"
r2d2 = "0.8.10"
r2d2_sqlite = { version = "0.22.0" }
rayon = "1.7.0"
rmp-serde = "1.1.1"
rstest = "0.18.1"
rayon = "1.8.0"
rmp-serde = "1.1.2"
rstest = "0.18.2"
rusqlite = { version = "0.29" }
sanitize-filename = "0.5.0"
serde_rusqlite = "0.33.1"
spin = { version = "0.9.8", features = ["mutex", "spin_mutex"] }
strum = "0.25.0"
strum_macros = "0.25.2"
syn = { version = "2.0", features = ["full", "extra-traits"] }
tempfile = "3.6.0"
thiserror = "1.0.40"
tempfile = "3.8.0"
thiserror = "1.0.49"
tracing-appender = "0.2.2"
tracing-core = "0.1.31"
tracing-subscriber = "0.3.17"
Expand All @@ -73,7 +73,7 @@ wasm-logger = "0.2.0"
futures-intrusive = "0.5"
pollster = "0.3"
text_placeholder = { version = "0.5.0", features = ["struct_context"] }
wgpu = "0.17.0"
wgpu = "0.17.1"

#
# The following packages disable the "std" feature for no_std compatibility
Expand All @@ -90,19 +90,19 @@ half = { version = "2.3.1", features = [
"serde",
], default-features = false }
ndarray = { version = "0.15.6", default-features = false }
num-traits = { version = "0.2.15", default-features = false, features = [
num-traits = { version = "0.2.16", 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 }
serde = { version = "1.0.164", default-features = false, features = [
serde = { version = "1.0.188", default-features = false, features = [
"derive",
"alloc",
] } # 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 }
serde_json = { version = "1.0.107", default-features = false }
uuid = { version = "1.4.1", default-features = false }

[profile.dev]
debug = 0 # Speed up compilation time and not necessary.
4 changes: 2 additions & 2 deletions burn-dataset/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ derive-new = {workspace = true}
dirs = {workspace = true}
fake = {workspace = true, optional = true}
gix-tempfile = {workspace = true, optional = true}
hound = {version = "3.5.0", optional = true}
image = {version = "0.24.6", features = ["png"], optional = true}
hound = {version = "3.5.1", optional = true}
image = {version = "0.24.7", features = ["png"], optional = true}
r2d2 = {workspace = true, optional = true}
r2d2_sqlite = {workspace = true, optional = true}
rand = {workspace = true, features = ["std"]}
Expand Down
2 changes: 1 addition & 1 deletion burn-import/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ derive-new = {workspace = true}
half = {workspace = true}
log = {workspace = true}
proc-macro2 = {workspace = true}
protobuf = {version = "3.2", features = ["with-bytes"]}
protobuf = {version = "3.3", features = ["with-bytes"]}
quote = {workspace = true}
rust-format = {version = "0.3", features = ["token_stream", "post_process"]}
serde = {workspace = true}
Expand Down
2 changes: 1 addition & 1 deletion burn-ndarray/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ burn-autodiff = {path = "../burn-autodiff", version = "0.10.0", features = ["exp
burn-common = {path = "../burn-common", version = "0.10.0", default-features = false}
burn-tensor = {path = "../burn-tensor", version = "0.10.0", default-features = false, features = ["export_tests"]}

matrixmultiply = {version = "0.3.7", default-features = false}
matrixmultiply = {version = "0.3.8", default-features = false}
rayon = {workspace = true, optional = true}

blas-src = {version = "0.9.0", default-features = false, optional = true}# no-std compatible
Expand Down
4 changes: 2 additions & 2 deletions burn-tch/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ doc = ["tch/doc-only"]
burn-tensor = {path = "../burn-tensor", version = "0.10.0" }

half = {workspace = true, features = ["std"]}
libc = "0.2.146"
libc = "0.2.149"
rand = {workspace = true, features = ["std"]}
tch = {version = "0.13.0", features = ["download-libtorch"]}
tch = {version = "0.14.0", features = ["download-libtorch"]}

[dev-dependencies]
burn-autodiff = {path = "../burn-autodiff", version = "0.10.0", default-features = false, features = [
Expand Down
2 changes: 1 addition & 1 deletion burn-train/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ tracing-core.workspace = true

# Metrics
nvml-wrapper = { version = "0.9.0", optional = true }
sysinfo = { version = "0.29.8", optional = true }
sysinfo = { version = "0.29.10", optional = true }
systemstat = { version = "0.2.3", optional = true }

# Text UI
Expand Down

0 comments on commit 097fd95

Please sign in to comment.