-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
47 lines (43 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 = "nerdfix"
version = "0.4.2"
authors = ["Loi Chyan <[email protected]>"]
license = "MIT OR Apache-2.0"
edition = "2021"
rust-version = "1.75"
[dependencies]
bytesize = "1.3"
camino = "1.1"
clap = { version = "4.5", features = ["derive"] }
clap_complete = "4.5"
codespan-reporting = "0.11.1"
content_inspector = "0.2.4"
derive_more = { version = "1", features = ["full"] }
extend = "1.2"
indexmap = "2.2"
inquire = "0.7.5"
itertools = "0.13.0"
json-strip-comments = "1"
miette = { version = "7.2", features = ["fancy"] }
noodler = "0.1.0"
nu-ansi-term = "0.50.0"
once_cell = "1.19"
regex = "1.10"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
shadow-rs = { version = "0.36.0", default-features = false }
thisctx = "0.4.0"
thiserror = "2"
tracing = "0.1.40"
tracing-subscriber = "0.3.18"
walkdir = "2.5"
[dev-dependencies]
assert_cmd = { version = "2", features = ["color"] }
predicates = { version = "3", features = ["color", "diff"] }
strip-ansi-escapes = "0.2.0"
[build-dependencies]
shadow-rs = { version = "0.36.0", default-features = false }
[profile.release]
lto = true
codegen-units = 1
strip = true