[package] name = "anpa" version = "0.7.0" authors = ["Andreas Hallberg "] description = "A generic monadic parser combinator library inspired by Haskell's parsec." keywords = ["parser", "parser-combinator", "parsec"] edition = "2018" rust-version = "1.80.0" license = "MIT OR Apache-2.0" include = ["/src", "/bench", "LICENSE-MIT", "LICENSE-APACHE"] readme = "README.md" repository = "https://github.com/habbbe/anpa-rs" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [profile.release] opt-level = 3 lto = true codegen-units = 1 panic = "abort" [lib] name = "anpa" path = "src/lib/lib.rs" [[bin]] name = "anpa_bench" path = "bench/bin.rs" required-features = ["build_bench"] [features] default = ["std"] std = [] json = ["std"] semver = [] build_bench = ["json", "semver"]