1# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO 2# 3# When uploading crates to the registry Cargo will automatically 4# "normalize" Cargo.toml files for maximal compatibility 5# with all versions of Cargo and also rewrite `path` dependencies 6# to registry (e.g., crates.io) dependencies. 7# 8# If you are reading this file be aware that the original Cargo.toml 9# will likely look very different (and much more reasonable). 10# See Cargo.toml.orig for the original contents. 11 12[package] 13edition = "2021" 14rust-version = "1.61" 15name = "pest" 16version = "2.7.6" 17authors = ["Dragoș Tiselice <[email protected]>"] 18description = "The Elegant Parser" 19homepage = "https://pest.rs/" 20documentation = "https://docs.rs/pest" 21readme = "_README.md" 22keywords = [ 23 "pest", 24 "parser", 25 "peg", 26 "grammar", 27] 28categories = ["parsing"] 29license = "MIT OR Apache-2.0" 30repository = "https://github.com/pest-parser/pest" 31 32[[bench]] 33name = "stack" 34harness = false 35 36[dependencies.memchr] 37version = "2" 38optional = true 39 40[dependencies.serde] 41version = "1.0.145" 42optional = true 43 44[dependencies.serde_json] 45version = "1.0.85" 46optional = true 47 48[dependencies.thiserror] 49version = "1.0.37" 50optional = true 51 52[dependencies.ucd-trie] 53version = "0.1.5" 54default-features = false 55 56[dev-dependencies.criterion] 57version = "0.5.1" 58features = ["html_reports"] 59 60[features] 61const_prec_climber = [] 62default = [ 63 "std", 64 "memchr", 65] 66pretty-print = [ 67 "dep:serde", 68 "dep:serde_json", 69] 70std = [ 71 "ucd-trie/std", 72 "dep:thiserror", 73] 74