-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
47 lines (40 loc) · 983 Bytes
/
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-kconfig"
version = "0.2.1"
edition = "2021"
authors = ["yann Prono"]
repository = "https://github.com/Mcdostone/nom-kconfig"
homepage = "https://github.com/Mcdostone/nom-kconfig"
license = "MIT"
readme = "README.md"
description = "A Kconfig parser"
categories = ["parsing"]
keywords = ["parser", "parsing", "kconfig", "linux-kernel"]
rust-version = "1.56"
exclude = [
".github",
]
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--generate-link-to-definition"]
[workspace]
members = [
"fuzzing",
]
[dependencies]
nom = "7.1.3"
nom_locate = "4.2.0"
regex = "1.11.1"
serde = { version = "1.0.216", features = ["derive"], optional = true }
[dev-dependencies]
criterion = { version = "0.5", features = ["html_reports"] }
walkdir = "2.5.0"
[[bench]]
name = "my_benchmark"
harness = false
[features]
default = ["display", "hash", "serialize", "deserialize"]
display = []
hash = []
serialize = ["dep:serde"]
deserialize = ["dep:serde"]