Skip to content

Commit

Permalink
Upgrade deps
Browse files Browse the repository at this point in the history
Signed-off-by: Alex Saveau <[email protected]>
  • Loading branch information
SUPERCILEX committed Jun 15, 2024
1 parent 64358a8 commit d8889d5
Show file tree
Hide file tree
Showing 8 changed files with 252 additions and 207 deletions.
422 changes: 235 additions & 187 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 = { version = "0.4.4", default-features = false }
supercilex-tests = { version = "0.4.5", default-features = false }

[profile.release]
lto = true
Expand Down
2 changes: 1 addition & 1 deletion comparisons/rm_og_crappy/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ publish = false

[dependencies]
futures = "0.3.30"
tokio = { version = "1.37.0", features = ["rt"] }
tokio = { version = "1.38.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,11 +10,11 @@ categories = ["command-line-utilities", "development-tools", "filesystem"]
license.workspace = true

[dependencies]
clap = { version = "4.5.4", features = ["derive", "wrap_help"] }
clap = { version = "4.5.7", features = ["derive", "wrap_help"] }
error-stack = "0.4.1"
fuc_engine = { version = "1", path = "../fuc_engine" }
indicatif = { version = "0.17.8", optional = true }
thiserror = "1.0.58"
thiserror = "1.0.61"
tracing = { version = "0.1.40", optional = true }
tracing-indicatif = { version = "0.3.6", optional = true }
tracing-subscriber = { version = "0.3.18", features = ["env-filter"], optional = true }
Expand All @@ -26,12 +26,12 @@ cache-size = "0.6.0"
criterion = "0.5.1"
memmap2 = "0.9.4"
rand = "0.8.5"
supercilex-tests = { version = "0.4.4", default-features = false, features = ["clap"] }
supercilex-tests = { version = "0.4.5", default-features = false, features = ["clap"] }
tempfile = "3.10.1"
trycmd = "0.15.1"
trycmd = "0.15.4"

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

[features]
trace = ["fuc_engine/tracing", "dep:tracing", "dep:tracing-subscriber", "dep:tracing-tracy", "dep:tracy-client"]
Expand Down
1 change: 0 additions & 1 deletion cpz/src/main.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
#![feature(lazy_cell)]
#![feature(let_chains)]

use std::{
Expand Down
12 changes: 6 additions & 6 deletions fuc_engine/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ categories = ["filesystem"]
license.workspace = true

[dependencies]
crossbeam-channel = "0.5.12"
thiserror = "1.0.58"
crossbeam-channel = "0.5.13"
thiserror = "1.0.61"
tracing = { version = "0.1.40", default-features = false, features = ["attributes"], optional = true }
typed-builder = "0.18.1"
typed-builder = "0.18.2"

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

[target.'cfg(not(target_os = "linux"))'.dependencies]
rayon = "1.10.0"
Expand All @@ -27,6 +27,6 @@ remove_dir_all = { version = "0.8.2", features = ["parallel"] }
[dev-dependencies]
ftzz = "3.0.0"
io-adapters = "0.3.0"
rstest = { version = "0.18.2", default-features = false }
supercilex-tests = { version = "0.4.4", default-features = false, features = ["api"] }
rstest = { version = "0.21.0", default-features = false }
supercilex-tests = { version = "0.4.5", default-features = false, features = ["api"] }
tempfile = "3.10.1"
2 changes: 0 additions & 2 deletions fuc_engine/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
#![feature(lazy_cell)]
#![feature(lazy_cell_consume)]
#![feature(cstr_count_bytes)]
#![allow(clippy::used_underscore_binding)]
#![allow(clippy::needless_pass_by_value)]

Expand Down
8 changes: 4 additions & 4 deletions rmz/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ categories = ["command-line-utilities", "development-tools", "filesystem"]
license.workspace = true

[dependencies]
clap = { version = "4.5.4", features = ["derive", "wrap_help"] }
clap = { version = "4.5.7", features = ["derive", "wrap_help"] }
error-stack = "0.4.1"
fuc_engine = { version = "1", path = "../fuc_engine" }
indicatif = { version = "0.17.8", optional = true }
thiserror = "1.0.58"
thiserror = "1.0.61"
tracing = { version = "0.1.40", optional = true }
tracing-indicatif = { version = "0.3.6", optional = true }
tracing-subscriber = { version = "0.3.18", features = ["env-filter"], optional = true }
Expand All @@ -28,9 +28,9 @@ io-adapters = "0.3.0"
remove_dir_all = { version = "0.8.2", features = ["parallel"] }
rm_og_crappy = { path = "../comparisons/rm_og_crappy" }
rm_rayon = { path = "../comparisons/rm_rayon" }
supercilex-tests = { version = "0.4.4", default-features = false, features = ["clap"] }
supercilex-tests = { version = "0.4.5", default-features = false, features = ["clap"] }
tempfile = "3.10.1"
trycmd = "0.15.1"
trycmd = "0.15.4"

[features]
trace = ["fuc_engine/tracing", "dep:tracing", "dep:tracing-subscriber", "dep:tracing-tracy", "dep:tracy-client"]
Expand Down

0 comments on commit d8889d5

Please sign in to comment.