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