]> git.proxmox.com Git - pxar.git/blobdiff - Cargo.toml
bump version to 0.1.8-1
[pxar.git] / Cargo.toml
index ffe5956fd7bc7d883b0527d6bab3a7d61e0c4edb..af266b0e06c9e8ce1002e9a1d0c0ee7c87de4cff 100644 (file)
@@ -1,8 +1,15 @@
 [package]
 name = "pxar"
-version = "0.1.0"
+version = "0.1.8"
 authors = ["Wolfgang Bumiller <w.bumiller@proxmox.com>"]
 edition = "2018"
+license = "AGPL-3"
+description = "Proxmox Archive format support library"
+exclude = [
+    "build",
+    "debian",
+    "testdir",
+]
 
 [[example]]
 name = "apxar"
@@ -14,7 +21,7 @@ bitflags = "1.2.1"
 endian_trait = { version = "0.6", features = ["arrays"] }
 siphasher = "0.3"
 
-failure = { version = "0.1", optional = true }
+anyhow = { version = "1.0", optional = true }
 futures = { version = "0.3.1", optional = true }
 tokio = { version = "0.2.10", optional = true, default-features = false }
 
@@ -22,12 +29,20 @@ tokio = { version = "0.2.10", optional = true, default-features = false }
 default = [ "futures-io", "tokio-io" ]
 futures-io = [ "futures" ]
 tokio-io = [ "tokio" ]
+tokio-fs = [ "tokio-io", "tokio/fs" ]
+
+full = [ "tokio-fs", "futures-io" ]
+
 async-example = [
-    "failure",
+    "anyhow",
     "futures-io",
     "tokio-io",
-    "tokio/fs",
+    "tokio-fs",
     "tokio/rt-threaded",
     "tokio/io-driver",
     "tokio/macros",
 ]
+
+[dev-dependencies]
+libc = "0.2"
+anyhow = "1.0"