1[package] 2 3name = "nom" 4version = "7.1.0" 5authors = [ "contact@geoffroycouprie.com" ] 6description = "A byte-oriented, zero-copy, parser combinators library" 7license = "MIT" 8repository = "https://github.com/Geal/nom" 9readme = "README.md" 10documentation = "https://docs.rs/nom" 11keywords = ["parser", "parser-combinators", "parsing", "streaming", "bit"] 12categories = ["parsing"] 13edition = "2018" 14autoexamples = false 15 16include = [ 17 "CHANGELOG.md", 18 "LICENSE", 19 "README.md", 20 ".gitignore", 21 "Cargo.toml", 22 "src/*.rs", 23 "src/*/*.rs", 24 "tests/*.rs", 25 "doc/nom_recipes.md", 26 "build.rs" 27] 28 29[features] 30alloc = [] 31std = ["alloc", "memchr/std", "minimal-lexical/std"] 32default = ["std"] 33docsrs = [] 34 35[dependencies.minimal-lexical] 36version = "0.2.0" 37default-features = false 38 39[dependencies.memchr] 40version = "2.3" 41default-features = false 42 43[dev-dependencies] 44doc-comment = "0.3" 45proptest = "1.0.0" 46 47[build-dependencies] 48version_check = "0.9" 49 50[package.metadata.docs.rs] 51features = ["alloc", "std", "docsrs"] 52all-features = true 53 54[profile.bench] 55debug = true 56lto = true 57codegen-units = 1 58 59[[test]] 60name = "arithmetic" 61 62[[test]] 63name = "arithmetic_ast" 64required-features = ["alloc"] 65 66[[test]] 67name = "css" 68 69[[test]] 70name = "custom_errors" 71 72[[test]] 73name = "float" 74 75[[test]] 76name = "ini" 77required-features = ["alloc"] 78 79[[test]] 80name = "ini_str" 81required-features = ["alloc"] 82 83[[test]] 84name = "issues" 85required-features = ["alloc"] 86 87[[test]] 88name = "json" 89 90[[test]] 91name = "mp4" 92required-features = ["alloc"] 93 94[[test]] 95name = "multiline" 96required-features = ["alloc"] 97 98[[test]] 99name = "overflow" 100 101[[test]] 102name = "reborrow_fold" 103 104[[test]] 105name = "fnmut" 106required-features = ["alloc"] 107 108[[example]] 109name = "json" 110required-features = ["alloc"] 111path = "examples/json.rs" 112 113[[example]] 114name = "iterator" 115path = "examples/iterator.rs" 116 117[[example]] 118name = "s_expression" 119path = "examples/s_expression.rs" 120required-features = ["alloc"] 121 122[[example]] 123name = "string" 124required-features = ["alloc"] 125path = "examples/string.rs" 126 127[badges] 128travis-ci = { repository = "Geal/nom" } 129coveralls = { repository = "Geal/nom", branch = "master", service = "github" } 130maintenance = { status = "actively-developed" } 131 132[workspace] 133members = [".", "benchmarks/"] 134