-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (31 loc) · 809 Bytes
/
Cargo.toml
File metadata and controls
38 lines (31 loc) · 809 Bytes
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
[package]
name = "new-nu-parser"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tracy-client = { version = "0.17.3", default-features = false } # for tracy v0.11.1
logos = "0.15"
nu-protocol = "0.101"
[profile.profiling]
inherits = "release"
debug = true
[features]
# By default, profiling is disabled. Enable it by the "profile" feature
tracy = [
"tracy-client/enable",
"tracy-client/flush-on-exit",
"tracy-client/sampling",
"tracy-client/code-transfer",
]
[lib]
name = "new_nu_parser"
path = "src/lib.rs"
[dev-dependencies]
insta = { version = "1.33.0", features = ["glob"] }
tango-bench = "0.6"
nu-parser = "0.101"
nu-cmd-lang = "0.101"
[[bench]]
name = "benchmarks"
harness = false