[package]
edition = "2021"
name = "ruleset"
version = "2.0.1"
authors = ["Sʜɪᴍᴜʀᴀ Yū <mail@yuhr.org>"]
build = false
exclude = [
"*.toml",
".*",
"justfile",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Monotonic chart parsing."
readme = "README.md"
license = "MPL-2.0"
repository = "https://github.com/yuhr/ruleset"
[lib]
name = "ruleset"
path = "src/lib.rs"
doctest = false
[[test]]
name = "anbncn"
path = "tests/anbncn.rs"
[[test]]
name = "arithmetic"
path = "tests/arithmetic.rs"
[[test]]
name = "json"
path = "tests/json.rs"
[[test]]
name = "misc"
path = "tests/misc.rs"
[[test]]
name = "ordinals_zermelo"
path = "tests/ordinals_zermelo.rs"
[[test]]
name = "prelude"
path = "tests/prelude.rs"
[[test]]
name = "sum_left_associative"
path = "tests/sum_left_associative.rs"
[[test]]
name = "sum_naive"
path = "tests/sum_naive.rs"
[[bench]]
name = "parsing"
path = "benches/parsing.rs"
harness = false
[dependencies.anyhow]
version = "1.0.95"
[dependencies.comfy-table]
version = "7.1.3"
[dependencies.derive-where]
version = "1.2.7"
[dependencies.either]
version = "1.13.0"
[dependencies.ruleset-macros]
version = "=2.0.1"
[dependencies.serde]
version = "1.0.217"
features = ["derive"]
optional = true
[dependencies.stable_try_trait_v2]
version = "1.75.1"
[dependencies.xxhash-rust]
version = "0.8.15"
features = ["xxh3"]
[dev-dependencies.criterion]
version = "0.5.1"
[dev-dependencies.insta]
version = "1.42.0"
[dev-dependencies.serde]
version = "1.0.217"
[dev-dependencies.serde_yaml]
version = "0.9.34"
[dev-dependencies.stdext]
version = "0.3.3"