-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
47 lines (40 loc) · 1.12 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
[package]
name = "nom-parse-macros"
description = "Procedural macros for generating parser functions for the nom libary"
version = "0.3.1"
license = "MIT/Apache-2.0"
keywords = ["nom", "parser", "parsable"]
categories = ["parsing"]
authors = ["Marc de Jonge <marcdejonge@gmail.com>"]
homepage = "https://github.com/marcdejonge/nom-parse-macros"
repository = "https://github.com/marcdejonge/nom-parse-macros.git"
readme = "README.md"
edition = "2021"
include = [
"src/*.rs",
"LICENSE-*",
"README.md",
]
[lib]
proc-macro = true
path = "src/lib.rs"
[[example]]
name = "basic_enum_with_members"
path = "examples/basic_enum_with_members.rs"
[[example]]
name = "basic_struct_with_members"
path = "examples/basic_struct_with_members.rs"
[[example]]
name = "derived_fields"
path = "examples/derived_fields.rs"
[[example]]
name = "use_matching_string"
path = "examples/use_matching_string.rs"
[dependencies]
quote = "1.0"
proc-macro2 = "1.0"
syn = { version = "2.0", features = ["extra-traits", "full", "visit", "visit-mut"] }
itertools = "0.14.0"
phf = { version = "0.11.2", features = ["macros"] }
nom-parse-trait = "0.3.2"
nom = "8.0.0"