mirror of
https://github.com/fluencelabs/rust-libp2p
synced 2025-06-26 08:11:39 +00:00
build(deps): Update parking_lot requirement from 0.11.0 to 0.12.0 (#2463)
* build(deps): Update parking_lot requirement from 0.11.0 to 0.12.0 Updates the requirements on [parking_lot](https://github.com/Amanieu/parking_lot) to permit the latest version. - [Release notes](https://github.com/Amanieu/parking_lot/releases) - [Changelog](https://github.com/Amanieu/parking_lot/blob/master/CHANGELOG.md) - [Commits](https://github.com/Amanieu/parking_lot/compare/0.11.0...0.12.0) --- updated-dependencies: - dependency-name: parking_lot dependency-type: direct:production ... Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Max Inden <mail@max-inden.de>
This commit is contained in:
@ -69,9 +69,12 @@
|
||||
- Update to `libp2p-websocket` `v0.34.0`.
|
||||
- Update to `libp2p-yamux` `v0.36.0`.
|
||||
|
||||
- Update to `parking_lot` `v0.12.0`. See [PR 2463].
|
||||
|
||||
- Drop support for gossipsub in the wasm32-unknown-unknown target (see [PR 2506]).
|
||||
|
||||
[PR 2506]: https://github.com/libp2p/rust-libp2p/pull/2506
|
||||
[PR 2463]: https://github.com/libp2p/rust-libp2p/pull/2463/
|
||||
|
||||
## Version 0.42.1 [2022-02-02]
|
||||
|
||||
|
@ -57,7 +57,7 @@ rendezvous = ["libp2p-rendezvous"]
|
||||
tcp-async-io = ["libp2p-tcp", "libp2p-tcp/async-io"]
|
||||
tcp-tokio = ["libp2p-tcp", "libp2p-tcp/tokio"]
|
||||
uds = ["libp2p-uds"]
|
||||
wasm-bindgen = ["futures-timer/wasm-bindgen", "instant/wasm-bindgen", "parking_lot/wasm-bindgen", "getrandom/js", "rand/wasm-bindgen"]
|
||||
wasm-bindgen = ["futures-timer/wasm-bindgen", "instant/wasm-bindgen", "getrandom/js", "rand/wasm-bindgen"]
|
||||
wasm-ext = ["libp2p-wasm-ext"]
|
||||
wasm-ext-websocket = ["wasm-ext", "libp2p-wasm-ext/websocket"]
|
||||
websocket = ["libp2p-websocket"]
|
||||
@ -98,7 +98,7 @@ libp2p-uds = { version = "0.32.0", path = "transports/uds", optional = true }
|
||||
libp2p-wasm-ext = { version = "0.32.0", path = "transports/wasm-ext", default-features = false, optional = true }
|
||||
libp2p-yamux = { version = "0.36.0", path = "muxers/yamux", optional = true }
|
||||
multiaddr = { version = "0.14.0" }
|
||||
parking_lot = "0.11.0"
|
||||
parking_lot = "0.12.0"
|
||||
pin-project = "1.0.0"
|
||||
rand = "0.7.3" # Explicit dependency to be used in `wasm-bindgen` feature
|
||||
smallvec = "1.6.1"
|
||||
|
@ -10,6 +10,8 @@
|
||||
|
||||
- Implement `Display` on `DialError`. See [PR 2456].
|
||||
|
||||
- Update to `parking_lot` `v0.12.0`. See [PR 2463].
|
||||
|
||||
- Validate PeerRecord signature matching peer ID. See [RUSTSEC-2022-0009].
|
||||
|
||||
- Don't take ownership of key in `PeerRecord::new` and `SignedEnvelope::new`. See [PR 2516].
|
||||
@ -18,6 +20,7 @@
|
||||
[RUSTSEC-2022-0009]: https://rustsec.org/advisories/RUSTSEC-2022-0009.html
|
||||
[PR 2492]: https://github.com/libp2p/rust-libp2p/pull/2492
|
||||
[PR 2516]: https://github.com/libp2p/rust-libp2p/pull/2516
|
||||
[PR 2463]: https://github.com/libp2p/rust-libp2p/pull/2463/
|
||||
|
||||
# 0.31.0 [2022-01-27]
|
||||
|
||||
|
@ -26,7 +26,7 @@ multiaddr = { version = "0.14.0" }
|
||||
multihash = { version = "0.16", default-features = false, features = ["std", "multihash-impl", "identity", "sha2"] }
|
||||
multistream-select = { version = "0.11", path = "../misc/multistream-select" }
|
||||
p256 = { version = "0.10.0", default-features = false, features = ["ecdsa"], optional = true }
|
||||
parking_lot = "0.11.0"
|
||||
parking_lot = "0.12.0"
|
||||
pin-project = "1.0.0"
|
||||
prost = "0.9"
|
||||
rand = "0.8"
|
||||
|
@ -2,6 +2,10 @@
|
||||
|
||||
- Update to `libp2p-core` `v0.32.0`.
|
||||
|
||||
- Update to `parking_lot` `v0.12.0`. See [PR 2463].
|
||||
|
||||
[PR 2463]: https://github.com/libp2p/rust-libp2p/pull/2463/
|
||||
|
||||
# 0.31.0 [2022-01-27]
|
||||
|
||||
- Update dependencies.
|
||||
|
@ -17,7 +17,7 @@ asynchronous-codec = "0.6"
|
||||
libp2p-core = { version = "0.32.0", path = "../../core", default-features = false }
|
||||
log = "0.4"
|
||||
nohash-hasher = "0.2"
|
||||
parking_lot = "0.11"
|
||||
parking_lot = "0.12"
|
||||
rand = "0.7"
|
||||
smallvec = "1.6.1"
|
||||
unsigned-varint = { version = "0.7", features = ["asynchronous_codec"] }
|
||||
|
@ -2,6 +2,10 @@
|
||||
|
||||
- Update to `libp2p-core` `v0.32.0`.
|
||||
|
||||
- Update to `parking_lot` `v0.12.0`. See [PR 2463].
|
||||
|
||||
[PR 2463]: https://github.com/libp2p/rust-libp2p/pull/2463/
|
||||
|
||||
# 0.35.0 [2022-01-27]
|
||||
|
||||
- Update dependencies.
|
||||
|
@ -13,6 +13,6 @@ categories = ["network-programming", "asynchronous"]
|
||||
[dependencies]
|
||||
futures = "0.3.1"
|
||||
libp2p-core = { version = "0.32.0", path = "../../core", default-features = false }
|
||||
parking_lot = "0.11"
|
||||
parking_lot = "0.12"
|
||||
thiserror = "1.0"
|
||||
yamux = "0.10.0"
|
||||
|
Reference in New Issue
Block a user