Skip to content

Commit a7f2771

Browse files
branchseerclaude
andcommitted
fix: add lints.workspace = true to all crates
This ensures all crates inherit the workspace lints configuration, including the `long_running_const_eval = "allow"` setting needed for the newer Rust nightly. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent d0ebdf6 commit a7f2771

8 files changed

Lines changed: 24 additions & 0 deletions

File tree

crates/fspy/Cargo.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,3 +60,6 @@ anyhow = { workspace = true }
6060
flate2 = { workspace = true }
6161
tar = { workspace = true }
6262
xxhash-rust = { workspace = true, features = ["xxh3"] }
63+
64+
[lints]
65+
workspace = true

crates/fspy_e2e/Cargo.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,6 @@ fspy = { workspace = true }
99
serde = { workspace = true, features = ["derive"] }
1010
tokio = { workspace = true, features = ["full"] }
1111
toml = { workspace = true }
12+
13+
[lints]
14+
workspace = true

crates/fspy_preload_unix/Cargo.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,6 @@ fspy_shared = { workspace = true }
1515
fspy_shared_unix = { workspace = true }
1616
libc = { workspace = true }
1717
nix = { workspace = true, features = ["signal", "fs", "socket", "mman", "time"] }
18+
19+
[lints]
20+
workspace = true

crates/fspy_preload_windows/Cargo.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,6 @@ winsafe = { workspace = true }
1919

2020
[target.'cfg(target_os = "windows")'.dev-dependencies]
2121
tempfile = { workspace = true }
22+
23+
[lints]
24+
workspace = true

crates/fspy_seccomp_unotify/Cargo.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,6 @@ tokio = { workspace = true, features = ["macros", "time"] }
2626
[features]
2727
supervisor = ["dep:passfd", "passfd/async"]
2828
target = ["dep:passfd"]
29+
30+
[lints]
31+
workspace = true

crates/fspy_shared/Cargo.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,6 @@ assert2 = { workspace = true }
2525
ctor = { workspace = true }
2626
fspy_test_utils = { workspace = true }
2727
shared_memory = { workspace = true, features = ["logging"] }
28+
29+
[lints]
30+
workspace = true

crates/fspy_shared_unix/Cargo.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,6 @@ memmap2 = { workspace = true }
2222

2323
[target.'cfg(target_os = "macos")'.dependencies]
2424
phf = { workspace = true }
25+
26+
[lints]
27+
workspace = true

crates/vite_glob/Cargo.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,6 @@ wax = { workspace = true }
1313

1414
[dev-dependencies]
1515
vite_str = { workspace = true }
16+
17+
[lints]
18+
workspace = true

0 commit comments

Comments
 (0)