Skip to content

Commit b763443

Browse files
committed
build: move arbitrary derive feature to workspace root
We always need the derive macro when we need the arbitrary dep.
1 parent 4ae5955 commit b763443

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ edition = "2021"
1010
rust-version = "1.65.0"
1111

1212
[workspace.dependencies]
13-
arbitrary = "1"
13+
arbitrary = { version = "1", features = ["derive"] }
1414
byteorder = "1"
1515
rand = "0.8"
1616
tracing = "0.1"

fuzz/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ edition.workspace = true
1010
cargo-fuzz = true
1111

1212
[dependencies]
13-
arbitrary = { workspace = true, features = ["derive"] }
13+
arbitrary.workspace = true
1414
libfuzzer-sys = "0.4"
1515
tracing.workspace = true
1616
tracing-subscriber = { version = "0.3", features = ["env-filter"]}

0 commit comments

Comments
 (0)