# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2018" rust-version = "1.80.0" name = "anpa" version = "0.7.0" authors = ["Andreas Hallberg "] build = false include = [ "/src", "/bench", "LICENSE-MIT", "LICENSE-APACHE", ] autolib = false autobins = false autoexamples = false autotests = false autobenches = false description = "A generic monadic parser combinator library inspired by Haskell's parsec." readme = "README.md" keywords = [ "parser", "parser-combinator", "parsec", ] license = "MIT OR Apache-2.0" repository = "https://github.com/habbbe/anpa-rs" [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] build_bench = [ "json", "semver", ] default = ["std"] json = ["std"] semver = [] std = []