Update all dependencies

This commit is contained in:
Luke Street 2025-08-18 12:36:03 -06:00
parent 5e7269ddcc
commit 4ec8fbf6b9
4 changed files with 331 additions and 181 deletions

482
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -21,8 +21,8 @@ repository = "https://github.com/encounter/nod"
keywords = ["gamecube", "wii", "iso", "wbfs", "rvz"] keywords = ["gamecube", "wii", "iso", "wbfs", "rvz"]
[workspace.dependencies] [workspace.dependencies]
digest = { version = "0.11.0-pre.9", default-features = false } digest = { version = "0.11.0-rc.0", default-features = false }
md-5 = { version = "0.11.0-pre.4", default-features = false } md-5 = { version = "0.11.0-rc.0", default-features = false }
sha1 = { version = "0.11.0-pre.4", default-features = false } sha1 = { version = "0.11.0-rc.0", default-features = false }
tracing = "0.1" tracing = "0.1"
zerocopy = { version = "0.8", features = ["alloc", "derive"] } zerocopy = { version = "0.8", features = ["alloc", "derive"] }

View File

@ -25,21 +25,21 @@ openssl-vendored = ["openssl", "openssl/vendored"]
[dependencies] [dependencies]
adler = { version = "1.0", optional = true } adler = { version = "1.0", optional = true }
aes = "0.9.0-pre.2" aes = "0.9.0-rc.0"
base16ct = "0.2" base16ct = "0.2"
bytes = "1.10" bytes = "1.10"
bzip2 = { version = "0.5", features = ["static"], optional = true } bzip2 = { version = "0.6", features = ["static"], optional = true }
cbc = "0.2.0-pre.2" cbc = "0.2.0-rc.0"
crc32fast = "1.4" crc32fast = "1.5"
crossbeam-channel = "0.5" crossbeam-channel = "0.5"
crossbeam-utils = "0.8" crossbeam-utils = "0.8"
digest = { workspace = true } digest = { workspace = true }
dyn-clone = "1.0" dyn-clone = "1.0"
encoding_rs = "0.8" encoding_rs = "0.8"
itertools = "0.14" itertools = "0.14"
liblzma = { version = "0.3", features = ["static"], optional = true } liblzma = { version = "0.4", features = ["static"], optional = true }
liblzma-sys = { version = "0.3", features = ["static"], optional = true } liblzma-sys = { version = "0.4", features = ["static"], optional = true }
lru = "0.13" lru = "0.16"
md-5 = { workspace = true } md-5 = { workspace = true }
miniz_oxide = { version = "0.8", optional = true } miniz_oxide = { version = "0.8", optional = true }
openssl = { version = "0.10", optional = true } openssl = { version = "0.10", optional = true }

View File

@ -27,15 +27,15 @@ tracy = ["dep:tracing-tracy"]
[dependencies] [dependencies]
argp = "0.4" argp = "0.4"
crc32fast = "1.4" crc32fast = "1.5"
digest = { workspace = true } digest = { workspace = true }
enable-ansi-support = "0.2" enable-ansi-support = "0.2"
hex = { version = "0.4", features = ["serde"] } hex = { version = "0.4", features = ["serde"] }
indicatif = "0.17" indicatif = "0.18"
md-5 = { workspace = true } md-5 = { workspace = true }
nod = { version = "2.0.0-alpha", path = "../nod", default-features = false } nod = { version = "2.0.0-alpha", path = "../nod", default-features = false }
num_cpus = "1.16" num_cpus = "1.17"
quick-xml = { version = "0.37", features = ["serialize"] } quick-xml = { version = "0.38", features = ["serialize"] }
serde = { version = "1.0", features = ["derive"] } serde = { version = "1.0", features = ["derive"] }
sha1 = { workspace = true } sha1 = { workspace = true }
size = "0.5" size = "0.5"
@ -52,7 +52,7 @@ mimalloc = "0.1"
[build-dependencies] [build-dependencies]
hex = { version = "0.4", features = ["serde"] } hex = { version = "0.4", features = ["serde"] }
quick-xml = { version = "0.37", features = ["serialize"] } quick-xml = { version = "0.38", features = ["serialize"] }
serde = { version = "1.0", features = ["derive"] } serde = { version = "1.0", features = ["derive"] }
zerocopy = { version = "0.8", features = ["alloc", "derive"] } zerocopy = { version = "0.8", features = ["alloc", "derive"] }
zstd = "0.13" zstd = "0.13"