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