]> git.proxmox.com Git - pxar.git/blobdiff - Cargo.toml
debcargo: fix maintainer directive
[pxar.git] / Cargo.toml
index 875de7afb68478c61a40eb0459e9cb97bd31108e..b63b6d644f9c3d92cc98fd7ac1e18df6b53c8ae3 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "pxar"
-version = "0.6.2"
+version = "0.7.0"
 authors = ["Wolfgang Bumiller <w.bumiller@proxmox.com>"]
 edition = "2018"
 license = "AGPL-3"
@@ -46,23 +46,20 @@ endian_trait = { version = "0.6", features = ["arrays"] }
 siphasher = "0.3"
 
 anyhow = { version = "1.0", optional = true }
-futures = { version = "0.3.1", optional = true }
 tokio = { version = "1.0", optional = true, default-features = false }
 
 [target.'cfg(target_os = "linux")'.dependencies]
 libc = "0.2"
 
 [features]
-default = [ "futures-io", "tokio-io" ]
-futures-io = [ "futures" ]
+default = [ "tokio-io" ]
 tokio-io = [ "tokio" ]
 tokio-fs = [ "tokio-io", "tokio/fs" ]
 
-full = [ "tokio-fs", "futures-io" ]
+full = [ "tokio-fs"]
 
 async-example = [
     "anyhow",
-    "futures-io",
     "tokio-io",
     "tokio-fs",
     "tokio/rt-multi-thread",