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.15" 17authors = ["Dragoș Tiselice <dragostiselice@gmail.com>"] 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.miette] 41version = "7.2.0" 42features = ["fancy"] 43optional = true 44 45[dependencies.serde] 46version = "1.0.145" 47optional = true 48 49[dependencies.serde_json] 50version = "1.0.85" 51optional = true 52 53[dependencies.thiserror] 54version = "2" 55optional = true 56 57[dependencies.ucd-trie] 58version = "0.1.5" 59default-features = false 60 61[dev-dependencies.criterion] 62version = "0.5.1" 63features = ["html_reports"] 64 65[dev-dependencies.miette] 66version = "7.2.0" 67features = ["fancy"] 68 69[features] 70const_prec_climber = [] 71default = [ 72 "std", 73 "memchr", 74] 75miette-error = [ 76 "std", 77 "pretty-print", 78 "dep:miette", 79 "dep:thiserror", 80] 81pretty-print = [ 82 "dep:serde", 83 "dep:serde_json", 84] 85std = [ 86 "ucd-trie/std", 87 "dep:thiserror", 88] 89