Skip to content

Commit

Permalink
Upgrade deps
Browse files Browse the repository at this point in the history
Signed-off-by: Alex Saveau <saveau.alexandre@gmail.com>
  • Loading branch information
SUPERCILEX committed Nov 19, 2023
1 parent c8f9171 commit f59149b
Show file tree
Hide file tree
Showing 8 changed files with 153 additions and 124 deletions.
239 changes: 134 additions & 105 deletions Cargo.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ version = "0.0.0"
publish = false

[dev-dependencies]
supercilex-tests = "0.3.4"
supercilex-tests = "0.4.1"

[profile.release]
lto = true
Expand Down
4 changes: 2 additions & 2 deletions comparisons/rm_og_crappy/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ edition.workspace = true
publish = false

[dependencies]
futures = "0.3.28"
tokio = { version = "1.32.0", features = ["rt"] }
futures = "0.3.29"
tokio = { version = "1.34.0", features = ["rt"] }
10 changes: 5 additions & 5 deletions cpz/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,22 +10,22 @@ categories = ["command-line-utilities", "development-tools", "filesystem"]
license.workspace = true

[dependencies]
clap = { version = "4.4.6", features = ["derive", "wrap_help"] }
clap = { version = "4.4.8", features = ["derive", "wrap_help"] }
error-stack = "0.4.1"
fuc_engine = { version = "1", path = "../fuc_engine" }
thiserror = "1.0.49"
thiserror = "1.0.50"

[dev-dependencies]
cache-size = "0.6.0"
criterion = "0.5.1"
memmap2 = "0.9.0"
rand = "0.8.5"
supercilex-tests = "0.3.4"
tempfile = "3.8.0"
supercilex-tests = "0.4.1"
tempfile = "3.8.1"
trycmd = "0.14.19"

[target.'cfg(unix)'.dev-dependencies]
rustix = { version = "0.38.17", features = ["fs", "pipe"] }
rustix = { version = "0.38.25", features = ["fs", "pipe"] }

[[bench]]
name = "copy_methods"
Expand Down
2 changes: 1 addition & 1 deletion cpz/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,6 @@ mod cli_tests {

#[test]
fn help_for_review() {
supercilex_tests::help_for_review2(Cpz::command());
supercilex_tests::help_for_review(Cpz::command());
}
}
10 changes: 5 additions & 5 deletions fuc_engine/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ license.workspace = true

[dependencies]
crossbeam-channel = "0.5.8"
thiserror = "1.0.49"
typed-builder = "0.16.2"
thiserror = "1.0.50"
typed-builder = "0.18.0"

[target.'cfg(target_os = "linux")'.dependencies]
rustix = { version = "0.38.17", features = ["fs", "thread", "linux_latest"] }
rustix = { version = "0.38.25", features = ["fs", "thread", "linux_latest"] }

[target.'cfg(not(target_os = "linux"))'.dependencies]
rayon = "1.8.0"
Expand All @@ -26,5 +26,5 @@ remove_dir_all = "0.8.2"
[dev-dependencies]
ftzz = "2.0.3"
rstest = { version = "0.18.2", default-features = false }
supercilex-tests = "0.3.4"
tempfile = "3.8.0"
supercilex-tests = "0.4.1"
tempfile = "3.8.1"
8 changes: 4 additions & 4 deletions rmz/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,19 +10,19 @@ categories = ["command-line-utilities", "development-tools", "filesystem"]
license.workspace = true

[dependencies]
clap = { version = "4.4.6", features = ["derive", "wrap_help"] }
clap = { version = "4.4.8", features = ["derive", "wrap_help"] }
error-stack = "0.4.1"
fuc_engine = { version = "1", path = "../fuc_engine" }
thiserror = "1.0.49"
thiserror = "1.0.50"

[dev-dependencies]
criterion = "0.5.1"
ftzz = "2.0.3"
tempfile = "3.8.0"
tempfile = "3.8.1"
trycmd = "0.14.19"
rm_rayon = { path = "../comparisons/rm_rayon" }
rm_og_crappy = { path = "../comparisons/rm_og_crappy" }
supercilex-tests = "0.3.4"
supercilex-tests = "0.4.1"
remove_dir_all = "0.8.2"

[[bench]]
Expand Down
2 changes: 1 addition & 1 deletion rmz/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,6 @@ mod cli_tests {

#[test]
fn help_for_review() {
supercilex_tests::help_for_review2(Rmz::command());
supercilex_tests::help_for_review(Rmz::command());
}
}

0 comments on commit f59149b

Please sign in to comment.