-
Notifications
You must be signed in to change notification settings - Fork 999
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update unsigned-varint and asynchronous-codec (#1946)
* Update unsigned-varint requirement from 0.6 to 0.7 Updates the requirements on [unsigned-varint](https://github.com/paritytech/unsigned-varint) to permit the latest version. - [Release notes](https://github.com/paritytech/unsigned-varint/releases) - [Changelog](https://github.com/paritytech/unsigned-varint/blob/master/CHANGELOG.md) - [Commits](paritytech/unsigned-varint@v0.6.0...v0.7.0) Signed-off-by: dependabot[bot] <[email protected]> * *: Update to asynchronous-codec v0.6 * transports/plaintext: Use Framed::into_parts * *: Update cargo tomls and changelogs Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Max Inden <[email protected]>
- Loading branch information
1 parent
5ddc8d4
commit 639e5c6
Showing
17 changed files
with
51 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
name = "libp2p-core" | ||
edition = "2018" | ||
description = "Core traits and structs of libp2p" | ||
version = "0.27.0" | ||
version = "0.27.1" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
license = "MIT" | ||
repository = "https://github.com/libp2p/rust-libp2p" | ||
|
@@ -31,7 +31,7 @@ rw-stream-sink = "0.2.0" | |
sha2 = "0.9.1" | ||
smallvec = "1.0" | ||
thiserror = "1.0" | ||
unsigned-varint = "0.6" | ||
unsigned-varint = "0.7" | ||
void = "1" | ||
zeroize = "1" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
# 0.11.1 [unreleased] | ||
|
||
- Update dependencies | ||
|
||
# 0.11.0 [2021-01-12] | ||
|
||
- Update dependencies | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
# 0.10.1 [unreleased] | ||
|
||
- Update dependencies. | ||
|
||
# 0.10.0 [2021-01-12] | ||
|
||
- Update dependencies. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "multistream-select" | ||
description = "Multistream-select negotiation protocol for libp2p" | ||
version = "0.10.0" | ||
version = "0.10.1" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
license = "MIT" | ||
repository = "https://github.com/libp2p/rust-libp2p" | ||
|
@@ -15,7 +15,7 @@ futures = "0.3" | |
log = "0.4" | ||
pin-project = "1.0.0" | ||
smallvec = "1.0" | ||
unsigned-varint = "0.6" | ||
unsigned-varint = "0.7" | ||
|
||
[dev-dependencies] | ||
async-std = "1.6.2" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
# 0.27.1 [unreleased] | ||
|
||
- Update dependencies. | ||
|
||
# 0.27.0 [2021-01-12] | ||
|
||
- Update dependencies. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
name = "libp2p-mplex" | ||
edition = "2018" | ||
description = "Mplex multiplexing protocol for libp2p" | ||
version = "0.27.0" | ||
version = "0.27.1" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
license = "MIT" | ||
repository = "https://github.com/libp2p/rust-libp2p" | ||
|
@@ -12,14 +12,14 @@ categories = ["network-programming", "asynchronous"] | |
[dependencies] | ||
bytes = "1" | ||
futures = "0.3.1" | ||
asynchronous-codec = "0.5.0" | ||
asynchronous-codec = "0.6" | ||
libp2p-core = { version = "0.27.0", path = "../../core" } | ||
log = "0.4" | ||
nohash-hasher = "0.2" | ||
parking_lot = "0.11" | ||
rand = "0.7" | ||
smallvec = "1.4" | ||
unsigned-varint = { version = "0.6", features = ["asynchronous_codec"] } | ||
unsigned-varint = { version = "0.7", features = ["asynchronous_codec"] } | ||
|
||
[dev-dependencies] | ||
async-std = "1.7.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
# 0.28.1 [unreleased] | ||
|
||
- Update dependencies. | ||
|
||
# 0.28.0 [2021-01-12] | ||
|
||
- Update dependencies. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
name = "libp2p-kad" | ||
edition = "2018" | ||
description = "Kademlia protocol for libp2p" | ||
version = "0.28.0" | ||
version = "0.28.1" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
license = "MIT" | ||
repository = "https://github.com/libp2p/rust-libp2p" | ||
|
@@ -14,7 +14,7 @@ arrayvec = "0.5.1" | |
bytes = "1" | ||
either = "1.5" | ||
fnv = "1.0" | ||
asynchronous-codec = "0.5" | ||
asynchronous-codec = "0.6" | ||
futures = "0.3.1" | ||
log = "0.4" | ||
libp2p-core = { version = "0.27.0", path = "../../core" } | ||
|
@@ -25,7 +25,7 @@ sha2 = "0.9.1" | |
smallvec = "1.0" | ||
wasm-timer = "0.2" | ||
uint = "0.9" | ||
unsigned-varint = { version = "0.6", features = ["asynchronous_codec"] } | ||
unsigned-varint = { version = "0.7", features = ["asynchronous_codec"] } | ||
void = "1.0" | ||
|
||
[dev-dependencies] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
# 0.27.1 [unreleased] | ||
|
||
- Update dependencies. | ||
|
||
# 0.27.0 [2021-01-12] | ||
|
||
- Update dependencies. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
name = "libp2p-plaintext" | ||
edition = "2018" | ||
description = "Plaintext encryption dummy protocol for libp2p" | ||
version = "0.27.0" | ||
version = "0.27.1" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
license = "MIT" | ||
repository = "https://github.com/libp2p/rust-libp2p" | ||
|
@@ -12,11 +12,11 @@ categories = ["network-programming", "asynchronous"] | |
[dependencies] | ||
bytes = "1" | ||
futures = "0.3.1" | ||
asynchronous-codec = "0.5.0" | ||
asynchronous-codec = "0.6" | ||
libp2p-core = { version = "0.27.0", path = "../../core" } | ||
log = "0.4.8" | ||
prost = "0.7" | ||
unsigned-varint = { version = "0.6", features = ["asynchronous_codec"] } | ||
unsigned-varint = { version = "0.7", features = ["asynchronous_codec"] } | ||
void = "1.0.2" | ||
|
||
[dev-dependencies] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters