Upgrade dep versions (#359)

This commit is contained in:
Dilshod Tadjibaev 2023-05-21 08:07:39 -05:00 committed by GitHub
parent 6fece7e4cb
commit b170b539b7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
9 changed files with 19 additions and 19 deletions

View File

@ -25,24 +25,24 @@ bytemuck = "1.13"
const-random = "0.1.15"
csv = "1.2.1"
dashmap = "5.4.0"
dirs = "5.0.0"
fake = "2.5.0"
dirs = "5.0.1"
fake = "2.6.1"
flate2 = "1.0.26"
hashbrown = "0.13.2"
indicatif = "0.17.3"
libm = "0.2.6"
libm = "0.2.7"
log = "0.4.17"
log4rs = "1.2.0"
pretty_assertions = "1.3"
proc-macro2 = "1.0.56"
proc-macro2 = "1.0.58"
protobuf-codegen = "3.2"
quote = "1.0.26"
quote = "1.0.27"
r2d2 = "0.8.10"
r2d2_sqlite = "0.21.0"
r2d2_sqlite = "0.22.0"
rayon = "1.7.0"
rstest = "0.17.0"
sanitize-filename = "0.4.0"
serde_rusqlite = "0.31.0"
serde_rusqlite = "0.33.1"
spin = {version = "0.9.8", features = ["mutex", "spin_mutex"]}
strum = "0.24"
strum_macros = "0.24"
@ -52,7 +52,7 @@ topological-sort = "0.2.2"
#
# The following packages disable the "std" feature for no_std compatibility
#
bincode = {version = "2.0.0-rc", features = ["alloc", "serde"], default-features = false}
bincode = {version = "2.0.0-rc.3", features = ["alloc", "serde"], default-features = false}
derive-new = {version = "0.5.9", default-features = false}
half = {version = "2", features = ["alloc", "num-traits"], default-features = false}
ndarray = {version = "0.15.6", default-features = false}
@ -60,6 +60,6 @@ num-traits = {version = "0.2.15", default-features = false, features = ["libm"]}
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}
rmp-serde = {version = "1.1.1"}
serde = {version = "1.0.160", default-features = false, features = ["derive", "alloc"]}# alloc is for no_std, derive is needed
serde = {version = "1.0.163", 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.2", default-features = false}
uuid = {version = "1.3.3", default-features = false}

View File

@ -19,4 +19,4 @@ proc-macro = true
proc-macro2 = {workspace = true}
quote = {workspace = true}
# syn = {workspace = true}
syn = "1.0.76" # TODO upgrade to 2.0
syn = "1.0.109" # TODO upgrade to 2.0

View File

@ -43,7 +43,7 @@ burn-common = {path = "../burn-common", version = "0.8.0", default-features = fa
burn-tensor = {path = "../burn-tensor", version = "0.8.0", default-features = false, features = ["export_tests"]}
matrixmultiply = {version = "0.3.6", default-features = false}
matrixmultiply = {version = "0.3.7", default-features = false}
rayon = {workspace = true, optional = true}
blas-src = {version = "0.8.0", default-features = false, optional = true}# no-std compatible

View File

@ -17,7 +17,7 @@ doc = ["tch/doc-only"]
burn-tensor = {path = "../burn-tensor", version = "0.8.0"}
half = {workspace = true, features = ["std"]}
libc = "0.2.0"
libc = "0.2.144"
rand = {workspace = true, features = ["std"]}
tch = {version = "0.12.0"}

View File

@ -15,15 +15,15 @@ edition = "2021"
burn-core = { path = "../burn-core", version = "0.8.0" }
# Console
indicatif = "0.17.2"
indicatif = "0.17.3"
log4rs = { workspace = true }
log = { workspace = true }
# Metrics
nvml-wrapper = "0.8.0"
textplots = "0.8.0"
rgb = "0.8.34"
terminal_size = "0.2.3"
rgb = "0.8.36"
terminal_size = "0.2.6"
# Utilities
derive-new = { workspace = true }

View File

@ -16,7 +16,7 @@ default = []
burn = {path = "../../burn", default-features = false}
burn-ndarray = {path = "../../burn-ndarray", default-features = false}
serde = {workspace = true}
wasm-bindgen = "0.2.84"
wasm-bindgen = "0.2.86"
[dev-dependencies]
burn-dataset = {path = "../../burn-dataset"}

View File

@ -21,7 +21,7 @@ burn-tch = {path = "../../burn-tch"}
burn-ndarray = {path = "../../burn-ndarray"}
# Tokenizer
tokenizers = {version = "0.13.2", default-features = false, features = [
tokenizers = {version = "0.13.3", default-features = false, features = [
"onig",
"http",
]}

View File

@ -17,7 +17,7 @@ burn-autodiff = { path = "../../burn-autodiff" }
burn-tch = { path = "../../burn-tch" }
# Tokenizer
tokenizers = { version = "0.13.2", default-features = false, features = [
tokenizers = { version = "0.13.3", default-features = false, features = [
"onig",
"http",
] }