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"
|
2020-08-07 14:30:00 +01:00
|
|
|
base64 = "0.12"
|
2020-06-09 09:15:00 +01:00
|
|
|
byteorder = "1.3"
|
|
|
|
clap = "2.33"
|
|
|
|
crc32c = "0.4"
|
2020-09-21 13:53:21 +01:00
|
|
|
data-encoding = "2.3"
|
2020-07-31 11:04:12 +01:00
|
|
|
duct = "0.13"
|
2020-06-25 10:44:57 +01:00
|
|
|
fixedbitset = "0.3"
|
2020-07-27 15:53:26 +01:00
|
|
|
futures = "0.3"
|
2020-06-09 09:15:00 +01:00
|
|
|
flate2 = "1.0"
|
2020-07-28 12:57:30 +01:00
|
|
|
io-uring = "0.3"
|
2020-08-11 13:22:14 +01:00
|
|
|
indicatif = "0.15"
|
2020-06-09 09:15:00 +01:00
|
|
|
libc = "0.2.71"
|
2020-06-10 14:38:42 +01:00
|
|
|
nix = "0.17"
|
2020-11-24 14:53:55 +08:00
|
|
|
nom = "6.0.0"
|
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"
|
2020-07-27 15:53:26 +01:00
|
|
|
quick-xml = "0.18"
|
2020-06-21 11:50:24 +01:00
|
|
|
rand = "0.7"
|
2021-02-09 14:34:26 +00:00
|
|
|
safemem = "0.3.3"
|
2020-06-26 16:44:47 +01:00
|
|
|
tempfile = "3.1"
|
2020-07-29 16:38:52 +01:00
|
|
|
threadpool = "1.8"
|
2020-06-21 11:50:24 +01:00
|
|
|
thiserror = "1.0"
|
2020-09-16 15:10:01 +01:00
|
|
|
tui = "0.10"
|
|
|
|
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
|