26 lines
498 B
TOML
26 lines
498 B
TOML
[package]
|
|
name = "parser-combinator"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[features]
|
|
testutil = []
|
|
|
|
[dependencies]
|
|
arbitrary = "1.2.0"
|
|
proptest = "1.0.0"
|
|
|
|
[dev-dependencies]
|
|
criterion = "0.4.0"
|
|
rstest = "0.16.0"
|
|
# see https://github.com/rust-lang/cargo/issues/2911#issuecomment-749580481
|
|
parser-combinator = { path = ".", features = ["testutil"] }
|
|
|
|
[[bench]]
|
|
name = "json-benchmark"
|
|
harness = false
|
|
|
|
|