-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathCargo.toml
78 lines (69 loc) · 1.82 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
[package]
name = "crush"
version = "0.1.0"
authors = ["Axel Liljencrantz <[email protected]>"]
edition = "2021"
license-file = "LICENSE"
description = "A command line shell that is also a powerful and modern programming language"
readme = "README.md"
repository = "https://github.com/liljencrantz/crush"
rust-version = "1.71.0"
[build-dependencies.prost-build]
version = "0.12.6"
[build-dependencies.lalrpop]
version = "0.20.2"
features = ["lexer"]
[workspace]
members = [
"signature",
"test_finder",
"ordered_map",
]
[dependencies.test_finder]
path = "test_finder"
[dependencies.signature]
path = "signature"
[dependencies.ordered_map]
path = "ordered_map"
[dependencies]
lalrpop-util = { version = "0.20.2", features = [ "lexer"] }
chrono = "0.4.38"
regex = "1.10.5"
lazy_static = "1.4.0"
rustyline = { version = "14.0.0", features = ["with-file-history"] }
rustyline-derive = "0.10.0"
dirs = "5.0.1"
serde_json = { version = "1.0.118", features = ["preserve_order"] }
serde_yaml = { version = "0.9.34+deprecated" }
toml = "0.8.14"
reqwest = { version = "0.12.5", features = ["blocking"] }
crossbeam = "0.8.4"
time = "0.3.36"
prost = "0.12.6"
bytes = "1.6.0"
termion = "4.0.2"
float-ord = "0.3.2"
maplit = "1.0.2"
ssh2 = "0.9.4"
rand = "0.8.5"
sys-info = "0.9.1"
battery = "0.7.8"
nix = { version = "0.29.0", features = ["process", "user", "signal", "fs"] }
dns-lookup = "2.0.4"
psutil = "3.3.0"
num-format = { version = "0.4.4", features = ["with-system-locale"] }
unicode-width = "0.1.5"
os_pipe = "1.2.0"
uptime_lib = "0.3.1"
trust-dns-client = "0.23.2"
resolv-conf = "0.7.0"
itertools = "0.13.0"
libc = { version = "0.2.155" }
mountpoints = "0.2.1"
[target.'cfg(target_os = "linux")'.dependencies]
dbus = "0.8.4"
roxmltree = "0.13.0"
systemd = "0.4.0"
[target.'cfg(target_os = "macos")'.dependencies]
libproc = "0.10.0"
mach2 = "0.4.1"