e22c19436c
CI environments can be noisy and while the test worked great locally on my machine, it didn't on the CI environment. This replaces the test with a (manually tracked) benchmark. As per https://github.com/alexcrichton/toml-rs/pull/349#issuecomment-546998173
18 lines
331 B
TOML
18 lines
331 B
TOML
[package]
|
|
name = "toml_test_suite"
|
|
version = "0.0.0"
|
|
authors = ["Alex Crichton <alex@alexcrichton.com>"]
|
|
publish = false
|
|
edition = "2018"
|
|
|
|
[[bench]]
|
|
name = "linear"
|
|
harness = false
|
|
|
|
[dev-dependencies]
|
|
bencher = "0.1"
|
|
toml = { path = ".." }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_derive = "1.0"
|
|
serde_json = "1.0"
|