Skip to content

Commit

Permalink
Fix incorrect removal in Cargo.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
citizen-stig committed Jul 17, 2023
1 parent 3b2510a commit 4e0cd40
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
1 change: 0 additions & 1 deletion examples/demo-rollup/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ prettytable-rs = "^0.10"
criterion = "0.5.1"

[features]
default = []
experimental = ["sov-ethereum/experimental"]

[[bench]]
Expand Down
5 changes: 3 additions & 2 deletions rollup-interface/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,14 @@ anyhow = { workspace = true }

# Proptest should be a dev-dependency, but those can't be optional
proptest = { workspace = true, optional = true }
proptest-derive = { workspace = true, optional = true }
proptest-derive = { workspace = true, optional = true }

[dev-dependencies]
serde_json = "1"
proptest = { workspace = true }
proptest-derive = { workspace = true }
proptest-derive = { workspace = true }

[features]
default = []
fuzzing = ["proptest", "proptest-derive", "sha2"]
mocks = ["sha2", "bytes/serde"]

0 comments on commit 4e0cd40

Please sign in to comment.