2020-06-09 13:45:00 +05:30
|
|
|
[package]
|
|
|
|
name = "thinp"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Joe Thornber <ejt@redhat.com>"]
|
|
|
|
edition = "2018"
|
|
|
|
license = "GPL3"
|
|
|
|
|
|
|
|
[dependencies]
|
2020-08-17 20:22:12 +05:30
|
|
|
atty = "0.2"
|
2020-06-21 16:20:24 +05:30
|
|
|
anyhow = "1.0"
|
2021-01-23 14:11:01 +05:30
|
|
|
base64 = "0.13"
|
|
|
|
byteorder = "1.4"
|
2020-06-09 13:45:00 +05:30
|
|
|
clap = "2.33"
|
2021-01-23 14:11:01 +05:30
|
|
|
crc32c = "0.6"
|
2020-09-21 18:23:21 +05:30
|
|
|
data-encoding = "2.3"
|
2020-07-31 15:34:12 +05:30
|
|
|
duct = "0.13"
|
2021-06-25 21:27:41 +05:30
|
|
|
fixedbitset = "0.4"
|
2020-07-27 20:23:26 +05:30
|
|
|
futures = "0.3"
|
2020-06-09 13:45:00 +05:30
|
|
|
flate2 = "1.0"
|
2021-01-23 14:11:01 +05:30
|
|
|
io-uring = "0.4"
|
2021-06-25 21:27:41 +05:30
|
|
|
indicatif = "0.16"
|
|
|
|
libc = "0.2"
|
2021-10-11 16:37:26 +05:30
|
|
|
nix = "0.22"
|
2021-06-25 21:27:41 +05:30
|
|
|
nom = "6.2"
|
2020-06-09 13:45:00 +05:30
|
|
|
num_cpus = "1.13"
|
|
|
|
num-derive = "0.3"
|
2020-06-21 16:20:24 +05:30
|
|
|
num-traits = "0.2"
|
2021-06-25 21:27:41 +05:30
|
|
|
quick-xml = "0.22"
|
2021-01-23 14:11:01 +05:30
|
|
|
rand = "0.8"
|
|
|
|
safemem = "0.3"
|
|
|
|
tempfile = "3.2"
|
2020-07-29 21:08:52 +05:30
|
|
|
threadpool = "1.8"
|
2020-06-21 16:20:24 +05:30
|
|
|
thiserror = "1.0"
|
2021-01-23 14:11:01 +05:30
|
|
|
tui = "0.14"
|
2020-09-16 19:40:01 +05:30
|
|
|
termion = "1.5"
|
2020-06-09 13:45:00 +05:30
|
|
|
|
|
|
|
[dev-dependencies]
|
2020-07-31 15:34:12 +05:30
|
|
|
json = "0.12"
|
2020-06-09 13:45:00 +05:30
|
|
|
quickcheck = "0.9"
|
|
|
|
quickcheck_macros = "0.9"
|
2020-09-02 17:27:47 +05:30
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
debug = true
|
2021-06-18 19:54:23 +05:30
|
|
|
|
|
|
|
[features]
|
|
|
|
rust_tests = []
|