Skip to content

Commit

Permalink
chore: update dependencies to latest
Browse files Browse the repository at this point in the history
  • Loading branch information
nyurik committed Apr 5, 2024
1 parent 10cf28f commit 2472009
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,19 +12,19 @@ exclude = ["/assets"]
description = "Fast and memory saving bsdiff 4.x compatible delta compressor and patcher."

[dependencies]
byteorder = "1.5"
bzip2 = "0.4.4"
byteorder = "1.4"
rayon = "1.5"
clap = { optional = true, version = "4.5", features = ["derive"] }
rayon = "1.10"
suffix_array = "0.5"
clap = { optional = true, version = "3.2", features = [ "derive" ] }

[dev-dependencies]
qbsdiff_test_bench_utils = { version ="0.1", path = "utils" }
criterion = { version = "0.3", features = [ "html_reports" ] }
criterion = { version = "0.5", features = ["html_reports"] }
qbsdiff_test_bench_utils = { version = "0.1", path = "utils" }

[features]
default = []
cmd = ["clap"]
cmd = ["dep:clap"]

[[bin]]
name = "qbsdiff"
Expand Down
6 changes: 3 additions & 3 deletions utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ repository = "https://github.com/hucsmn/qbsdiff"
description = "private utilities of the qbsdiff crate for tests and benchmarks"

[dependencies]
qbsdiff = { version ="1", path = ".." }
globwalk = "0.8"
rand = "0.8"
chrono = "0.4"
globwalk = "0.9"
qbsdiff = { version = "1", path = ".." }
rand = "0.8"

0 comments on commit 2472009

Please sign in to comment.