chore(codecs): add proptest roundtrip to all main_codec (#803)

This commit is contained in:
joshieDo
2023-01-11 14:06:01 +08:00
committed by GitHub
parent 593a94e426
commit aabbe4923b
13 changed files with 90 additions and 21 deletions

View File

@ -18,7 +18,16 @@ bytes = "1.2.1"
codecs-derive = { version = "0.1.0", path = "./derive", default-features = false }
revm-interpreter = { git = "https://github.com/bluealloy/revm", rev = "a05fb262d87c78ee52d400e6c0f4708d4c527f32", features = ["serde"] }
# arbitrary utils
arbitrary = { version = "1.1.7", features = ["derive"], optional = true }
proptest = { version = "1.0", optional = true }
proptest-derive = { version = "0.3", optional = true }
[dev-dependencies]
serde = "1.0"
modular-bitfield = "0.11.2"
test-fuzz = "3.0.4"
test-fuzz = "3.0.4"
arbitrary = { version = "1.1.7", features = ["derive"] }
proptest = { version = "1.0" }
proptest-derive = "0.3"