Update dependencies

This commit is contained in:
Luke Street 2025-03-04 23:08:25 -07:00
parent d6969045be
commit 38183e4258
3 changed files with 181 additions and 276 deletions

444
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -27,8 +27,8 @@ openssl-vendored = ["openssl", "openssl/vendored"]
adler = { version = "1.0", optional = true } adler = { version = "1.0", optional = true }
aes = "0.9.0-pre.2" aes = "0.9.0-pre.2"
base16ct = "0.2" base16ct = "0.2"
bytes = "1.8" bytes = "1.10"
bzip2 = { version = "0.4", features = ["static"], optional = true } bzip2 = { version = "0.5", features = ["static"], optional = true }
cbc = "0.2.0-pre.2" cbc = "0.2.0-pre.2"
crc32fast = "1.4" crc32fast = "1.4"
crossbeam-channel = "0.5" crossbeam-channel = "0.5"
@ -36,15 +36,14 @@ 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.13" itertools = "0.14"
liblzma = { version = "0.3", features = ["static"], optional = true } liblzma = { version = "0.3", features = ["static"], optional = true }
liblzma-sys = { version = "0.3", features = ["static"], optional = true } liblzma-sys = { version = "0.3", features = ["static"], optional = true }
lru = "0.12" lru = "0.13"
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 }
polonius-the-crab = "0.4" polonius-the-crab = "0.4"
rand = "0.8"
rayon = "1.10" rayon = "1.10"
sha1 = { workspace = true } sha1 = { workspace = true }
simple_moving_average = "1.0" simple_moving_average = "1.0"

View File

@ -26,7 +26,7 @@ openssl-vendored = ["nod/openssl-vendored"]
tracy = ["dep:tracing-tracy"] tracy = ["dep:tracing-tracy"]
[dependencies] [dependencies]
argp = "0.3" argp = "0.4"
crc32fast = "1.4" crc32fast = "1.4"
digest = { workspace = true } digest = { workspace = true }
enable-ansi-support = "0.2" enable-ansi-support = "0.2"
@ -38,7 +38,7 @@ num_cpus = "1.16"
quick-xml = { version = "0.37", features = ["serialize"] } quick-xml = { version = "0.37", features = ["serialize"] }
serde = { version = "1.0", features = ["derive"] } serde = { version = "1.0", features = ["derive"] }
sha1 = { workspace = true } sha1 = { workspace = true }
size = "0.4" size = "0.5"
supports-color = "3.0" supports-color = "3.0"
tracing = { workspace = true } tracing = { workspace = true }
tracing-attributes = "0.1" tracing-attributes = "0.1"