2022-12-20 12:05:21 -05:00
|
|
|
[package]
|
|
|
|
name = "shitbox"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2023-01-04 14:26:44 -05:00
|
|
|
atty = "0.2.14"
|
2022-12-20 12:05:21 -05:00
|
|
|
clap = "4.0.29"
|
|
|
|
clap_complete = "4.0.6"
|
|
|
|
clap_complete_nushell = "0.1.8"
|
|
|
|
clap_mangen = "0.2.5"
|
2022-12-26 23:44:53 -05:00
|
|
|
data-encoding = "2.3.3"
|
2022-12-20 12:05:21 -05:00
|
|
|
hostname = { version = "0.3", features = ["set"] }
|
2023-01-05 19:20:12 -05:00
|
|
|
libc = "0.2.139"
|
2023-01-07 18:50:18 -05:00
|
|
|
num_cpus = "1.15.0"
|
2023-01-04 14:26:44 -05:00
|
|
|
termcolor = "1.1.3"
|
2022-12-21 20:19:38 -05:00
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
codegen-units = 1
|
|
|
|
strip = true
|
|
|
|
lto = true
|
2022-12-28 22:48:23 -05:00
|
|
|
panic = "abort"
|
2022-12-21 20:19:38 -05:00
|
|
|
|