mirror of
https://github.com/fluencelabs/rust-libp2p
synced 2025-05-29 10:41:21 +00:00
protocols/kad: Export KademliaBucketInserts (#2294)
This commit is contained in:
parent
2d13f99d30
commit
a430e6bffc
@ -42,6 +42,12 @@
|
|||||||
|
|
||||||
# `libp2p` facade crate
|
# `libp2p` facade crate
|
||||||
|
|
||||||
|
|
||||||
|
## Version 0.40.0-rc.2 [2021-10-15]
|
||||||
|
|
||||||
|
- Update individual crates.
|
||||||
|
- `libp2p-kad`
|
||||||
|
|
||||||
## Version 0.40.0-rc.1 [2021-10-15]
|
## Version 0.40.0-rc.1 [2021-10-15]
|
||||||
|
|
||||||
- Update individual crates.
|
- Update individual crates.
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
name = "libp2p"
|
name = "libp2p"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
description = "Peer-to-peer networking library"
|
description = "Peer-to-peer networking library"
|
||||||
version = "0.40.0-rc.1"
|
version = "0.40.0-rc.2"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
repository = "https://github.com/libp2p/rust-libp2p"
|
repository = "https://github.com/libp2p/rust-libp2p"
|
||||||
@ -72,7 +72,7 @@ libp2p-core = { version = "0.30.0-rc.1", path = "core", default-features = fals
|
|||||||
libp2p-floodsub = { version = "0.31.0-rc.1", path = "protocols/floodsub", optional = true }
|
libp2p-floodsub = { version = "0.31.0-rc.1", path = "protocols/floodsub", optional = true }
|
||||||
libp2p-gossipsub = { version = "0.33.0-rc.1", path = "./protocols/gossipsub", optional = true }
|
libp2p-gossipsub = { version = "0.33.0-rc.1", path = "./protocols/gossipsub", optional = true }
|
||||||
libp2p-identify = { version = "0.31.0-rc.1", path = "protocols/identify", optional = true }
|
libp2p-identify = { version = "0.31.0-rc.1", path = "protocols/identify", optional = true }
|
||||||
libp2p-kad = { version = "0.32.0-rc.1", path = "protocols/kad", optional = true }
|
libp2p-kad = { version = "0.32.0-rc.2", path = "protocols/kad", optional = true }
|
||||||
libp2p-metrics = { version = "0.1.0-rc.1", path = "misc/metrics", optional = true }
|
libp2p-metrics = { version = "0.1.0-rc.1", path = "misc/metrics", optional = true }
|
||||||
libp2p-mplex = { version = "0.30.0-rc.1", path = "muxers/mplex", optional = true }
|
libp2p-mplex = { version = "0.30.0-rc.1", path = "muxers/mplex", optional = true }
|
||||||
libp2p-noise = { version = "0.33.0-rc.1", path = "transports/noise", optional = true }
|
libp2p-noise = { version = "0.33.0-rc.1", path = "transports/noise", optional = true }
|
||||||
|
@ -1,3 +1,9 @@
|
|||||||
|
# 0.32.0-rc.2 [2021-10-15]
|
||||||
|
|
||||||
|
- Export `KademliaBucketInserts` (see [PR 2294]).
|
||||||
|
|
||||||
|
[PR 2294]: https://github.com/libp2p/rust-libp2p/pull/2294
|
||||||
|
|
||||||
# 0.32.0-rc.1 [2021-10-15]
|
# 0.32.0-rc.1 [2021-10-15]
|
||||||
|
|
||||||
- Make default features of `libp2p-core` optional.
|
- Make default features of `libp2p-core` optional.
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
name = "libp2p-kad"
|
name = "libp2p-kad"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
description = "Kademlia protocol for libp2p"
|
description = "Kademlia protocol for libp2p"
|
||||||
version = "0.32.0-rc.1"
|
version = "0.32.0-rc.2"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
repository = "https://github.com/libp2p/rust-libp2p"
|
repository = "https://github.com/libp2p/rust-libp2p"
|
||||||
|
@ -48,7 +48,8 @@ pub use behaviour::{
|
|||||||
QueryStats,
|
QueryStats,
|
||||||
};
|
};
|
||||||
pub use behaviour::{
|
pub use behaviour::{
|
||||||
Kademlia, KademliaCaching, KademliaConfig, KademliaEvent, KademliaStoreInserts, Quorum,
|
Kademlia, KademliaBucketInserts, KademliaCaching, KademliaConfig, KademliaEvent,
|
||||||
|
KademliaStoreInserts, Quorum,
|
||||||
};
|
};
|
||||||
pub use protocol::KadConnectionType;
|
pub use protocol::KadConnectionType;
|
||||||
pub use query::QueryId;
|
pub use query::QueryId;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user