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 Aug 6, 2024
1 parent 39a30a4 commit 76257c0
Show file tree
Hide file tree
Showing 11 changed files with 214 additions and 204 deletions.
368 changes: 191 additions & 177 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 @@ -26,7 +26,7 @@ edition.workspace = true
publish = false

[dev-dependencies]
supercilex-tests = { version = "0.4.6", default-features = false }
supercilex-tests = { version = "0.4.8", 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.38.0", features = ["rt"] }
tokio = { version = "1.39.2", features = ["rt"] }
2 changes: 1 addition & 1 deletion comparisons/rm_remove_dir_all/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ edition.workspace = true
publish = false

[dependencies]
remove_dir_all = { version = "0.8.2", features = ["parallel"] }
remove_dir_all = { version = "0.8.3", features = ["parallel"] }
14 changes: 7 additions & 7 deletions cpz/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,25 +10,25 @@ categories = ["command-line-utilities", "development-tools", "filesystem"]
license.workspace = true

[dependencies]
clap = { version = "4.5.9", features = ["derive", "wrap_help"] }
clap = { version = "4.5.13", features = ["derive", "wrap_help"] }
error-stack = { version = "0.5.0", default-features = false, features = ["std"] }
fuc_engine = { version = "1", path = "../fuc_engine" }
indicatif = { version = "0.17.8", optional = true }
thiserror = "1.0.62"
thiserror = "1.0.63"
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 }
tracing-tracy = { version = "0.11.0", features = ["flush-on-exit"], optional = true }
tracy-client = { version = "0.17.0", optional = true }
tracing-tracy = { version = "0.11.1", features = ["flush-on-exit"], optional = true }
tracy-client = { version = "0.17.1", optional = true }

[dev-dependencies]
cache-size = "0.7.0"
criterion = "0.5.1"
memmap2 = "0.9.4"
rand = "0.8.5"
supercilex-tests = { version = "0.4.6", default-features = false, features = ["clap"] }
tempfile = "3.10.1"
trycmd = "0.15.4"
supercilex-tests = { version = "0.4.8", default-features = false, features = ["clap"] }
tempfile = "3.11.0"
trycmd = "0.15.6"

[target.'cfg(unix)'.dev-dependencies]
rustix = { version = "0.38.34", features = ["fs", "pipe"] }
Expand Down
1 change: 0 additions & 1 deletion cpz/benches/copy_methods.rs
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,6 @@ fn just_writes(c: &mut Criterion) {
}
}

#[allow(clippy::too_many_lines)]
fn add_benches(group: &mut BenchmarkGroup<WallTime>, num_bytes: u64, direct_io: bool) {
group.bench_with_input(
BenchmarkId::new("fs::copy", num_bytes),
Expand Down
10 changes: 5 additions & 5 deletions fuc_engine/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ license.workspace = true

[dependencies]
crossbeam-channel = "0.5.13"
thiserror = "1.0.62"
thiserror = "1.0.63"
tracing = { version = "0.1.40", default-features = false, features = ["attributes"], optional = true }
typed-builder = "0.19.1"

Expand All @@ -22,11 +22,11 @@ rustix = { version = "0.38.34", features = ["fs", "thread", "linux_latest"] }
rayon = "1.10.0"

[target.'cfg(target_os = "windows")'.dependencies]
remove_dir_all = { version = "0.8.2", features = ["parallel"] }
remove_dir_all = { version = "0.8.3", features = ["parallel"] }

[dev-dependencies]
ftzz = "3.0.0"
io-adapters = "0.3.0"
rstest = { version = "0.21.0", default-features = false }
supercilex-tests = { version = "0.4.6", default-features = false, features = ["api"] }
tempfile = "3.10.1"
rstest = { version = "0.22.0", default-features = false }
supercilex-tests = { version = "0.4.8", default-features = false, features = ["api"] }
tempfile = "3.11.0"
1 change: 0 additions & 1 deletion fuc_engine/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
#![feature(lazy_cell_into_inner)]
#![allow(clippy::used_underscore_binding)]
#![allow(clippy::needless_pass_by_value)]

use std::{borrow::Cow, io, path::PathBuf};
Expand Down
1 change: 0 additions & 1 deletion fuc_engine/src/ops/copy.rs
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,6 @@ mod compat {
};

struct Impl<LF: FnOnce() -> (Sender<TreeNode>, JoinHandle<Result<(), Error>>)> {
#[allow(clippy::type_complexity)]
scheduling: LazyCell<(Sender<TreeNode>, JoinHandle<Result<(), Error>>), LF>,
}

Expand Down
1 change: 0 additions & 1 deletion fuc_engine/src/ops/remove.rs
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,6 @@ mod compat {
};

struct Impl<LF: FnOnce() -> (Sender<TreeNode>, JoinHandle<Result<(), Error>>)> {
#[allow(clippy::type_complexity)]
scheduling: LazyCell<(Sender<TreeNode>, JoinHandle<Result<(), Error>>), LF>,
}

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

[dependencies]
clap = { version = "4.5.9", features = ["derive", "wrap_help"] }
clap = { version = "4.5.13", features = ["derive", "wrap_help"] }
error-stack = { version = "0.5.0", default-features = false, features = ["std"] }
fuc_engine = { version = "1", path = "../fuc_engine" }
indicatif = { version = "0.17.8", optional = true }
thiserror = "1.0.62"
thiserror = "1.0.63"
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 }
tracing-tracy = { version = "0.11.0", features = ["flush-on-exit"], optional = true }
tracy-client = { version = "0.17.0", optional = true }
tracing-tracy = { version = "0.11.1", features = ["flush-on-exit"], optional = true }
tracy-client = { version = "0.17.1", optional = true }

[dev-dependencies]
criterion = "0.5.1"
ftzz = "3.0.0"
io-adapters = "0.3.0"
remove_dir_all = { version = "0.8.2", features = ["parallel"] }
remove_dir_all = { version = "0.8.3", features = ["parallel"] }
rm_og_crappy = { path = "../comparisons/rm_og_crappy" }
rm_rayon = { path = "../comparisons/rm_rayon" }
supercilex-tests = { version = "0.4.6", default-features = false, features = ["clap"] }
tempfile = "3.10.1"
trycmd = "0.15.4"
supercilex-tests = { version = "0.4.8", default-features = false, features = ["clap"] }
tempfile = "3.11.0"
trycmd = "0.15.6"

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

0 comments on commit 76257c0

Please sign in to comment.