X-Git-Url: https://git.proxmox.com/?a=blobdiff_plain;f=Cargo.toml;h=d120e70feccef1365c159d42c3f1bb245cb3b00a;hb=f5be8e5c6d1ee238e2fa51ec3506db2086de5829;hp=9187aaf1313550db408447c093d334377024bf73;hpb=5db2e175b2e1f11d32b9a3eab8cd603be4439fb2;p=pxar.git diff --git a/Cargo.toml b/Cargo.toml index 9187aaf..d120e70 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,8 +1,9 @@ [package] name = "pxar" -version = "0.7.0" +# API broken, next is 0.11.0 (due to `ReadAtImpl` enum variants being made private) +version = "0.10.2" authors = ["Wolfgang Bumiller "] -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,8 +45,6 @@ bitflags = "1.2.1" 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] @@ -60,7 +58,6 @@ tokio-fs = [ "tokio-io", "tokio/fs" ] full = [ "tokio-fs"] async-example = [ - "anyhow", "tokio-io", "tokio-fs", "tokio/rt-multi-thread",