32 lines
671 B
TOML
32 lines
671 B
TOML
[package]
|
|
name = "nomo"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[[bench]]
|
|
name = "parsing"
|
|
harness = false
|
|
|
|
[profile.bench]
|
|
debug = true
|
|
|
|
[dependencies]
|
|
annotate-snippets = "0.12.13"
|
|
displaydoc = "0.2.5"
|
|
serde = { version = "1.0.228", features = ["derive"] }
|
|
serde_json = "1.0.149"
|
|
thiserror = "2.0.18"
|
|
winnow = { version = "0.7.14", features = ["unstable-recover"] }
|
|
|
|
[dev-dependencies]
|
|
annotate-snippets = { version = "0.12.13", features = ["testing-colors"] }
|
|
criterion = "0.8.2"
|
|
insta = { version = "1.46.3", features = ["glob"] }
|
|
nomo = { path = ".", features = ["serialize"] }
|
|
|
|
[profile.dev.package]
|
|
insta.opt-level = 3
|
|
similar.opt-level = 3
|
|
|
|
[features]
|
|
serialize = []
|