-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
48 lines (40 loc) · 906 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
48
[package]
name = "neure"
version = "0.6.2"
authors = ["araraloren <[email protected]>"]
edition = "2021"
license = "MPL-2.0"
description = "A fast little combinational parsing library"
repository = "https://github.com/araraloren/neure/"
keywords = ["regex", "parser"]
categories = ["parsing"]
[profile.release]
lto = true
codegen-units = 1
[dev-dependencies]
regex = "1.0"
nom = "7.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
color-eyre = "0.5"
criterion = "0.5"
[dependencies]
charize = "0.0.2"
tracing = { version = "0.1", optional = true }
[features]
log = ["tracing"]
[[bench]]
name = "nom_cap"
path = "./bench/nom_cap.rs"
harness = false
[[bench]]
name = "regex_cap"
path = "./bench/regex_cap.rs"
harness = false
[[bench]]
name = "regex_nocap"
path = "./bench/regex_nocap.rs"
harness = false
[[bench]]
name = "json"
path = "./bench/json.rs"
harness = false