mirror of
https://github.com/fluencelabs/rust-libp2p
synced 2025-05-28 18:21:20 +00:00
parent
bd0459121f
commit
486ac8baf2
2
Cargo.lock
generated
2
Cargo.lock
generated
@ -2503,7 +2503,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "libp2p-mdns"
|
name = "libp2p-mdns"
|
||||||
version = "0.43.0"
|
version = "0.43.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"async-io",
|
"async-io",
|
||||||
"async-std",
|
"async-std",
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
# 0.52.2 - unreleased
|
# 0.52.2
|
||||||
|
|
||||||
- Introduce `libp2p::connection_limits` module.
|
- Introduce `libp2p::connection_limits` module.
|
||||||
See [PR 3386].
|
See [PR 3386].
|
||||||
@ -12,12 +12,12 @@
|
|||||||
See [PR 3590].
|
See [PR 3590].
|
||||||
|
|
||||||
- Introduce `libp2p::perf` module.
|
- Introduce `libp2p::perf` module.
|
||||||
See [PR XXX].
|
See [PR 3693].
|
||||||
|
|
||||||
[PR 3386]: https://github.com/libp2p/rust-libp2p/pull/3386
|
[PR 3386]: https://github.com/libp2p/rust-libp2p/pull/3386
|
||||||
[PR 3580]: https://github.com/libp2p/rust-libp2p/pull/3580
|
[PR 3580]: https://github.com/libp2p/rust-libp2p/pull/3580
|
||||||
[PR 3590]: https://github.com/libp2p/rust-libp2p/pull/3590
|
[PR 3590]: https://github.com/libp2p/rust-libp2p/pull/3590
|
||||||
[PR XXX]: https://github.com/libp2p/rust-libp2p/pull/XXX
|
[PR 3693]: https://github.com/libp2p/rust-libp2p/pull/3693
|
||||||
|
|
||||||
# 0.51.1
|
# 0.51.1
|
||||||
|
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
# 0.1.0 - unreleased
|
# 0.1.0
|
||||||
|
|
||||||
- Initial release.
|
- Initial release.
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
# 0.1.0 - unreleased
|
# 0.1.0
|
||||||
|
|
||||||
- Initial release.
|
- Initial release.
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
# 0.44.2 - unreleased
|
# 0.44.2
|
||||||
|
|
||||||
- Signed messages now use sequential integers in the sequence number field.
|
- Signed messages now use sequential integers in the sequence number field.
|
||||||
See [PR 3551].
|
See [PR 3551].
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
# 0.43.1 [unreleased]
|
# 0.43.1
|
||||||
|
|
||||||
- Derive `Clone` for `mdns::Event`. See [PR 3606].
|
- Derive `Clone` for `mdns::Event`. See [PR 3606].
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
name = "libp2p-mdns"
|
name = "libp2p-mdns"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
rust-version = "1.62.0"
|
rust-version = "1.62.0"
|
||||||
version = "0.43.0"
|
version = "0.43.1"
|
||||||
description = "Implementation of the libp2p mDNS discovery method"
|
description = "Implementation of the libp2p mDNS discovery method"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
# 0.1.0 - unreleased
|
# 0.1.0
|
||||||
|
|
||||||
- Initial release.
|
- Initial release.
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
# 0.1.0 - unreleased
|
# 0.1.0
|
||||||
|
|
||||||
- Initial release.
|
- Initial release.
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
# 0.42.1 - unreleased
|
# 0.42.1
|
||||||
|
|
||||||
- Deprecate `ConnectionLimits` in favor of `libp2p::connection_limits`.
|
- Deprecate `ConnectionLimits` in favor of `libp2p::connection_limits`.
|
||||||
See [PR 3386].
|
See [PR 3386].
|
||||||
@ -12,12 +12,12 @@
|
|||||||
- Rename `NetworkBehaviourAction` to `ToSwarm`.
|
- Rename `NetworkBehaviourAction` to `ToSwarm`.
|
||||||
A deprecated type-alias is provided to ease the transition.
|
A deprecated type-alias is provided to ease the transition.
|
||||||
The new name is meant to better indicate the message-passing relationship between `Swarm` and `NetworkBehaviour`.
|
The new name is meant to better indicate the message-passing relationship between `Swarm` and `NetworkBehaviour`.
|
||||||
See [PR XXXX].
|
See [PR 3658].
|
||||||
|
|
||||||
[PR 3386]: https://github.com/libp2p/rust-libp2p/pull/3386
|
[PR 3386]: https://github.com/libp2p/rust-libp2p/pull/3386
|
||||||
[PR 3652]: https://github.com/libp2p/rust-libp2p/pull/3652
|
[PR 3652]: https://github.com/libp2p/rust-libp2p/pull/3652
|
||||||
[PR 3590]: https://github.com/libp2p/rust-libp2p/pull/3590
|
[PR 3590]: https://github.com/libp2p/rust-libp2p/pull/3590
|
||||||
[PR XXXX]: https://github.com/libp2p/rust-libp2p/pull/XXXX
|
[PR 3658]: https://github.com/libp2p/rust-libp2p/pull/3658
|
||||||
|
|
||||||
# 0.42.0
|
# 0.42.0
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
# 0.4.0-alpha.4 - unreleased
|
# 0.4.0-alpha.4
|
||||||
|
|
||||||
- Make `Fingerprint` type public. See [PR 3648].
|
- Make `Fingerprint` type public. See [PR 3648].
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user