-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
50 lines (47 loc) · 1.23 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
48
49
50
[package]
name = "crust"
version = "0.1.0"
authors = ["Axel Kappel"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bigdecimal = "0.4.0"
bitflags = "2.3.3"
cfg-if = "1.0.0"
comfy-table = "7.0.1"
crossterm = "0.26.0"
ctrlc = "3.2.0"
directories = "5.0.0"
distance = "0.4.0"
executable-finder = { version = "0.3.0", features = ["rayon"] }
fd-lock = "4.0.2"
glob = "0.3.0"
humansize = "2.1.3"
indexmap = { version = "2.0.0", features = ["serde"] }
memchr = "2.4.1"
miette = { version = "6.0.0", features = ["fancy"] }
num-traits = "0.2.14"
once_cell = "1.14.0"
opener = "0.6.0"
phf = { version = "0.11.1", features = ["macros"] }
rand = "0.8.4"
rayon = "1.5.3"
regex = "1.5.5"
rustyline = "13.0.0"
serde = { version = "1.0.145", features = ["derive"] }
serde_json = "1.0.85"
strip-ansi-escapes = "0.2.0"
subprocess = "0.2.8"
thiserror = "1.0.30"
toml = "0.8.0"
tracing = "0.1.40"
tracing-flame = "0.2.0"
tracing-subscriber = "0.3.18"
unicode-segmentation = "1.10.0"
unicode-width = "0.1.9"
ureq = { version = "2.4.0", features = ["brotli", "charset"] }
whoami = "1.1.1"
[target.'cfg(windows)'.dependencies]
winapi = "0.3.9"
[target.'cfg(unix)'.dependencies]
nix = "0.27.0"