-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathCargo.toml
43 lines (38 loc) · 1.11 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
[package]
name = "rymfony"
version = "0.1.0"
authors = ["Alex Rock Ancelet <[email protected]>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
atty = "0.2"
clap = { version = "4.0", features = ["color", "suggestions", "wrap_help"] }
colored = "2"
console = "0.15"
ctrlc = { version = "3.2", features = ["termination"] }
dirs = "4.0"
env_logger = "0.10"
glob = "0.3"
is_executable = "1.0"
linemux = "0.2"
log = "0.4"
os_info = { version = "3.5", default-features = false }
pretty_env_logger = "0.4"
prettytable-rs = "0.9"
regex = "1.7"
runas = "0.2"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
sha2 = "0.10"
sysinfo = "0.27"
tokio = { version = "1.23", features = ["rt-multi-thread"]}
version-compare = "0.1"
which = "4.3"
[target.'cfg(not(target_family = "windows"))'.dependencies]
users = "0.11"
[build-dependencies]
which = "4.3"
[profile.release]
opt-level = 'z' # Optimize for size.
lto = true # Optimize at the link stage with "Link Time Optimization"
codegen-units = 1 # Slower compilation, but more optimization