Skip to content

Commit

Permalink
fix: MSRV tests
Browse files Browse the repository at this point in the history
  • Loading branch information
DaniPopes committed Aug 24, 2023
1 parent 4d636c5 commit 366c12c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 12 deletions.
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ arbitrary = "1.3"
arrayvec = { version = "0.7", default-features = false }
bincode = "1.3"
bytes = { version = "1.4", default-features = false }
clap = "<=4.3" # clap@4.4.0 has 1.70 as MSRV, this is only used by criterion
criterion = "0.5"
derive_arbitrary = "1.3"
getrandom = "0.2"
Expand Down
8 changes: 2 additions & 6 deletions crates/dyn-abi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ proptest = { workspace = true, optional = true }

[dev-dependencies]
hex-literal.workspace = true
clap.workspace = true
criterion.workspace = true
ethabi = "18"
rand = "0.8"
Expand All @@ -54,12 +55,7 @@ std = [
"serde?/std",
"serde_json?/std",
]
eip712 = [
"alloy-sol-types/eip712-serde",
"dep:derive_more",
"dep:serde",
"dep:serde_json",
]
eip712 = ["alloy-sol-types/eip712-serde", "dep:derive_more", "dep:serde", "dep:serde_json"]
arbitrary = [
"std",
"alloy-sol-types/arbitrary",
Expand Down
8 changes: 2 additions & 6 deletions crates/json-abi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,17 +21,13 @@ serde_json = { workspace = true, optional = true }

[dev-dependencies]
serde_json.workspace = true
clap.workspace = true
criterion.workspace = true
ethabi = "18"

[features]
default = ["std"]
std = [
"serde/std",
"alloy-primitives/std",
"alloy-sol-type-parser/std",
"serde_json?/std",
]
std = ["serde/std", "alloy-primitives/std", "alloy-sol-type-parser/std", "serde_json?/std"]
serde_json = ["dep:serde_json"]

[[bench]]
Expand Down

0 comments on commit 366c12c

Please sign in to comment.