Skip to content

Commit

Permalink
fix proptest dep
Browse files Browse the repository at this point in the history
  • Loading branch information
tobz committed Jan 30, 2025
1 parent 9e8d55e commit 22ff414
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ ordered-float = { version = "4.6", default-features = false }
paste = { version = "1", default-features = false }
pin-project = { version = "1.1", default-features = false }
pin-project-lite = { version = "0.2", default-features = false }
proptest = { version = "1.6", default-features = false }
proptest = { version = "1.6", default-features = false, features = ["std"] }
prost = { version = "0.13", default-features = false }
quanta = { version = "0.12", default-features = false }
rand = { version = "0.8.5", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion lib/memory-accounting/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ tokio = { workspace = true, features = ["sync", "time"] }
tracing = { workspace = true }

[dev-dependencies]
proptest = { workspace = true, features = ["std"] }
proptest = { workspace = true }
2 changes: 1 addition & 1 deletion lib/saluki-env/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -49,4 +49,4 @@ tower = { workspace = true, features = ["util"] }
tracing = { workspace = true }

[dev-dependencies]
proptest = { workspace = true, features = ["std"] }
proptest = { workspace = true }
2 changes: 1 addition & 1 deletion lib/saluki-event/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ smallvec = { workspace = true, features = ["const_generics", "drain_filter", "un
stringtheory = { workspace = true }

[dev-dependencies]
proptest = { workspace = true, features = ["std"] }
proptest = { workspace = true }
2 changes: 1 addition & 1 deletion lib/saluki-io/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -58,5 +58,5 @@ url = { workspace = true, features = ["std"] }

[dev-dependencies]
http-body-util = { workspace = true }
proptest = { workspace = true, features = ["std"] }
proptest = { workspace = true }
tokio-test = { workspace = true }
2 changes: 1 addition & 1 deletion lib/stringtheory/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ protobuf = { workspace = true }
serde = { workspace = true }

[dev-dependencies]
proptest = { workspace = true, features = ["std"] }
proptest = { workspace = true }

0 comments on commit 22ff414

Please sign in to comment.