2019-03-27 13:12:20 +00:00
|
|
|
[package]
|
|
|
|
name = "nix-rust"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Eelco Dolstra <edolstra@gmail.com>"]
|
2019-09-10 19:55:32 +00:00
|
|
|
edition = "2018"
|
2019-03-27 13:12:20 +00:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "nixrust"
|
2019-11-29 17:27:40 +00:00
|
|
|
crate-type = ["cdylib"]
|
2019-03-27 13:12:20 +00:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
tar = "0.4"
|
|
|
|
libc = "0.2"
|
2019-09-12 15:39:25 +00:00
|
|
|
futures-preview = { version = "=0.3.0-alpha.18", features = ["compat"] }
|
|
|
|
#hyper = "0.12"
|
2019-09-12 16:22:48 +00:00
|
|
|
reqwest = { version = "0.9", default-features = false, features = ["rustls-tls"] }
|
2019-09-12 15:39:25 +00:00
|
|
|
http = "0.1"
|
2019-09-12 16:30:34 +00:00
|
|
|
tokio = { version = "0.1", default-features = false }
|
2019-09-16 22:18:17 +00:00
|
|
|
lazy_static = "1.4"
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
hex = "0.3"
|
|
|
|
assert_matches = "1.3"
|
|
|
|
proptest = "0.9"
|