]> git.proxmox.com Git - pxar.git/blobdiff - Cargo.toml
format/examples: Fix typo in PXAR_PAYLOAD description
[pxar.git] / Cargo.toml
index 462dc03990064efe448cd6b76d77025fb71a28cb..d120e70feccef1365c159d42c3f1bb245cb3b00a 100644 (file)
@@ -1,8 +1,9 @@
 [package]
 name = "pxar"
-version = "0.10.0"
+# API broken, next is 0.11.0 (due to `ReadAtImpl` enum variants being made private)
+version = "0.10.2"
 authors = ["Wolfgang Bumiller <w.bumiller@proxmox.com>"]
-edition = "2018"
+edition = "2021"
 license = "AGPL-3"
 description = "Proxmox Archive format support library"
 exclude = [
@@ -19,7 +20,6 @@ required-features = [ "async-example" ]
 [[example]]
 name = "pxarcmd"
 path = "examples/pxarcmd.rs"
-required-features = [ "anyhow" ]
 
 [[example]]
 name = "mk-format-hashes"
@@ -32,7 +32,7 @@ doc = false
 name = "simple"
 path = "tests/simple/main.rs"
 test = true
-required-features = [ "anyhow", "test-harness" ]
+required-features = [ "test-harness" ]
 
 [[test]]
 name = "compat"
@@ -45,7 +45,6 @@ bitflags = "1.2.1"
 endian_trait = { version = "0.6", features = ["arrays"] }
 siphasher = "0.3"
 
-anyhow = { version = "1.0", optional = true }
 tokio = { version = "1.0", optional = true, default-features = false }
 
 [target.'cfg(target_os = "linux")'.dependencies]
@@ -59,7 +58,6 @@ tokio-fs = [ "tokio-io", "tokio/fs" ]
 full = [ "tokio-fs"]
 
 async-example = [
-    "anyhow",
     "tokio-io",
     "tokio-fs",
     "tokio/rt-multi-thread",