feat: update libp2p again

Signed-off-by: ljedrz <ljedrz@gmail.com>
This commit is contained in:
ljedrz 2020-07-21 14:42:39 +02:00
parent 91979c22d6
commit cc26f40d14
5 changed files with 10 additions and 9 deletions

9
Cargo.lock generated
View File

@ -1707,9 +1707,9 @@ dependencies = [
[[package]]
name = "libp2p"
version = "0.21.1"
version = "0.22.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6d743d03fab397cde23925a17cb87b35b25994f44ab8c6a9e46a7e953ec739cd"
checksum = "0306a49ee6a89468f96089906f36b0eef82c988dcfc8acf3e2dcd6ad1c859f85"
dependencies = [
"bytes 0.5.4",
"futures 0.3.5",
@ -1935,10 +1935,11 @@ dependencies = [
[[package]]
name = "libp2p-noise"
version = "0.20.0"
version = "0.21.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f6ad6b67d802de8b5ddc5e8b0ff55a0d0a6a737c2c5c174601dbb9d24e0ad5cb"
checksum = "8f353f8966bbaaf7456535fffd3f366f153148773a0cf04b2ec3860955cb720e"
dependencies = [
"bytes 0.5.4",
"curve25519-dalek",
"futures 0.3.5",
"lazy_static",

View File

@ -21,10 +21,10 @@ dirs = "2.0.2"
domain = { git = "https://github.com/nlnetlabs/domain", rev="084964", features = ["resolv"] }
futures = { version = "0.3.5", features = ["compat", "io-compat"] }
libipld = { git = "https://github.com/ljedrz/rust-ipld", branch = "update_cid", features = ["dag-pb", "dag-json"] }
libp2p = "0.21.1"
libp2p = "0.22"
log = "0.4.8"
multibase = "0.8.0"
multihash = "0.11.2"
multihash = "0.11"
prost = "0.6.1"
rand = "0.7.3"
rocksdb = { version = "0.13.0", optional = true }

View File

@ -17,7 +17,7 @@ cid = "0.5"
libp2p-core = "0.20.0"
libp2p-swarm = "0.20.0"
log = "0.4.8"
multihash = "0.11.2"
multihash = "0.11"
prost = "0.6.1"
thiserror = "1.0.14"
unsigned-varint = "0.3.2"

View File

@ -18,7 +18,7 @@ ipfs = { path = "../" }
libipld = { git = "https://github.com/ljedrz/rust-ipld", branch = "update_cid", features = ["dag-pb", "dag-json"] }
log = "0.4.8"
multibase = "0.8.0"
multihash = "0.11.2"
multihash = "0.11"
# openssl is required for rsa keygen but not used by the rust-ipfs or it's dependencies
openssl = "0.10.28"
percent-encoding = "2.1.0"

View File

@ -18,7 +18,7 @@ cid = "0.5"
filetime = { version = "0.2.10", optional = true }
either = "1.5.3"
sha2 = "0.8.1"
multihash = "0.11.2"
multihash = "0.11"
[dev-dependencies]
multibase = "0.8.0"