diff --git a/Cargo.lock b/Cargo.lock index 1fc1743..462a4e2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -98,12 +98,6 @@ version = "0.3.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a4c527152e37cf757a3f78aae5a06fbeefdb07ccc535c980a3208ee3060dd544" -[[package]] -name = "arrayvec" -version = "0.7.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8da52d66c7071e2e3fa2a1e5c6d088fec47b593032b254f5e980de8ea54454d6" - [[package]] name = "ascii" version = "1.1.0" @@ -339,41 +333,6 @@ dependencies = [ "tokio", ] -[[package]] -name = "blake2b_simd" -version = "1.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "72936ee4afc7f8f736d1c38383b56480b5497b4617b4a77bdbf1d2ababc76127" -dependencies = [ - "arrayref", - "arrayvec", - "constant_time_eq 0.1.5", -] - -[[package]] -name = "blake2s_simd" -version = "1.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "db539cc2b5f6003621f1cd9ef92d7ded8ea5232c7de0f9faa2de251cd98730d4" -dependencies = [ - "arrayref", - "arrayvec", - "constant_time_eq 0.1.5", -] - -[[package]] -name = "blake3" -version = "1.3.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "42ae2468a89544a466886840aa467a25b766499f4f04bf7d9fcd10ecee9fccef" -dependencies = [ - "arrayref", - "arrayvec", - "cc", - "cfg-if", - "constant_time_eq 0.2.4", -] - [[package]] name = "block-buffer" version = "0.10.3" @@ -484,15 +443,14 @@ checksum = "fff857943da45f546682664a79488be82e69e43c1a7a2307679ab9afb3a66d2e" [[package]] name = "cid" -version = "0.10.1" +version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fd94671561e36e4e7de75f753f577edafb0e7c05d6e4547229fdf7938fbcd2c3" +checksum = "472ac98592f38dfd48f188d5713a328422ed22fa39eb52b8bca495370134762a" dependencies = [ "core2", "multibase", - "multihash 0.18.0", - "serde", - "unsigned-varint 0.7.1", + "multihash 0.19.1", + "unsigned-varint 0.8.0", ] [[package]] @@ -577,18 +535,6 @@ dependencies = [ "crossbeam-utils", ] -[[package]] -name = "constant_time_eq" -version = "0.1.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc" - -[[package]] -name = "constant_time_eq" -version = "0.2.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f3ad85c1f65dc7b37604eb0e89748faf0b9653065f2a8ef69f96a687ec1e9279" - [[package]] name = "cookie-factory" version = "0.3.2" @@ -1536,15 +1482,6 @@ dependencies = [ "wasm-bindgen", ] -[[package]] -name = "keccak" -version = "0.1.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3afef3b6eff9ce9d8ff9b3601125eec7f0c8cbac7abd14f355d053fa56c98768" -dependencies = [ - "cpufeatures", -] - [[package]] name = "lapin" version = "2.2.1" @@ -1762,18 +1699,11 @@ dependencies = [ [[package]] name = "multihash" -version = "0.18.0" +version = "0.19.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "15e5d911412e631e1de11eb313e4dd71f73fd964401102aab23d6c8327c431ba" +checksum = "076d548d76a0e2a0d4ab471d0b1c36c577786dfc4471242035d97a12a735c492" dependencies = [ - "blake2b_simd", - "blake2s_simd", - "blake3", "core2", - "digest", - "multihash-derive 0.8.1", - "sha2", - "sha3", "unsigned-varint 0.7.1", ] @@ -2705,27 +2635,6 @@ dependencies = [ "digest", ] -[[package]] -name = "sha2" -version = "0.10.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "82e6b795fe2e3b1e845bafcb27aa35405c4d47cdfc92af5fc8d3002f76cebdc0" -dependencies = [ - "cfg-if", - "cpufeatures", - "digest", -] - -[[package]] -name = "sha3" -version = "0.10.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bdf0c33fae925bdc080598b84bc15c55e7b9a4a43b3c704da051f977469691c9" -dependencies = [ - "digest", - "keccak", -] - [[package]] name = "signal-hook-registry" version = "1.4.0" @@ -3170,6 +3079,12 @@ version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d86a8dc7f45e4c1b0d30e43038c38f274e77af056aa5f74b93c2cf9eb3c1c836" +[[package]] +name = "unsigned-varint" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eb066959b24b5196ae73cb057f45598450d2c5f71460e98c49b738086eff9c06" + [[package]] name = "untrusted" version = "0.7.1" diff --git a/bitswap-discovery-probe/Cargo.toml b/bitswap-discovery-probe/Cargo.toml index 300810c..a7b1bad 100644 --- a/bitswap-discovery-probe/Cargo.toml +++ b/bitswap-discovery-probe/Cargo.toml @@ -20,7 +20,7 @@ lazy_static = "1.4.0" serde = "1.0.190" serde_yaml = "0.9.25" clap = "2.33.3" -cid = "0.10.1" +cid = "0.11.0" waitgroup = "0.1.2" futures = "0.3.28" multiaddr = "0.17.1" diff --git a/cid-decode/Cargo.toml b/cid-decode/Cargo.toml index 395477d..d37fbc5 100644 --- a/cid-decode/Cargo.toml +++ b/cid-decode/Cargo.toml @@ -12,5 +12,5 @@ failure = "0.1.7" log = "0.4.20" dotenv = "0.15.0" flexi_logger = "0.27.3" -cid = "0.10.1" +cid = "0.11.0" lazy_static = "1.4.0" diff --git a/ipfs-gateway-finder/Cargo.toml b/ipfs-gateway-finder/Cargo.toml index 648e4bc..320f33f 100644 --- a/ipfs-gateway-finder/Cargo.toml +++ b/ipfs-gateway-finder/Cargo.toml @@ -21,7 +21,7 @@ serde_json = "1.0.107" tokio = { version = "^1", features = ["rt-multi-thread","macros","sync"] } rand = "0.8.5" ipfs-api-backend-hyper = {version="0.6",features = ["with-hyper-rustls"],default-features = false} -cid = "0.10.1" +cid = "0.11.0" http = "0.2.9" csv = "1.2.2" clap = "2.33.3"