-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
43 lines (38 loc) · 1.02 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
[workspace]
resolver = "2"
members = ["andy-cpp-macros"]
[package]
name = "ndc"
version = "0.1.0"
edition = "2021"
authors = ["Tim Fennis <[email protected]>"]
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "ndc_lib"
path = "src/lib.rs"
[profile.release]
debug = false # true for flamegraph, false otherwise
strip = true # false for flamegraph, true otherwise
lto = true
[dependencies]
anyhow = "1.0.80"
clap = { version = "4.5.1", features = ["derive"] }
num = "0.4.1"
rustyline = { version = "14.0.0", optional = true, features = ["derive"] }
ryu = "1.0.17"
thiserror = "1.0.58"
andy-cpp-macros = { path = "andy-cpp-macros" }
itertools = "0.12.1"
either = "1.11.0"
ahash = { version = "0.8.11", optional = true }
ordered-float = "4.2.0"
regex = "1.10.4"
self_cell = "1.0.4"
miette = { version = "7.2.0", features = ["fancy"] }
owo-colors = "4.1.0"
factorial = "0.4.0"
[features]
default = ["repl", "ahash"]
repl = ["dep:rustyline"]
ahash = ["dep:ahash"]