You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
libp2p-plaintext = { version = "0.43.0", path = "transports/plaintext" }
97
97
libp2p-pnet = { version = "0.26.0", path = "transports/pnet" }
98
98
libp2p-quic = { version = "0.12.0", path = "transports/quic" }
99
-
libp2p-relay = { version = "0.19.1", path = "protocols/relay" }
99
+
libp2p-relay = { version = "0.20.0", path = "protocols/relay" }
100
100
libp2p-rendezvous = { version = "0.16.0", path = "protocols/rendezvous" }
101
101
libp2p-request-response = { version = "0.28.1", path = "protocols/request-response" }
102
102
libp2p-server = { version = "0.12.6", path = "misc/server" }
103
103
libp2p-stream = { version = "0.3.0-alpha", path = "protocols/stream" }
104
-
libp2p-swarm = { version = "0.46.1", path = "swarm" }
104
+
libp2p-swarm = { version = "0.47.0", path = "swarm" }
105
105
libp2p-swarm-derive = { version = "=0.35.1", path = "swarm-derive" } # `libp2p-swarm-derive` may not be compatible with different `libp2p-swarm` non-breaking releases. E.g. `libp2p-swarm` might introduce a new enum variant `FromSwarm` (which is `#[non-exhaustive]`) in a non-breaking release. Older versions of `libp2p-swarm-derive` would not forward this enum variant within the `NetworkBehaviour` hierarchy. Thus the version pinning is required.
106
106
libp2p-swarm-test = { version = "0.5.0", path = "swarm-test" }
107
107
libp2p-tcp = { version = "0.43.0", path = "transports/tcp" }
Copy file name to clipboardexpand all lines: ROADMAP.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@
3
3
Below is a high level roadmap for the rust-libp2p project.
4
4
Items are ordered by priority (high to low).
5
5
6
-
This is a living document.
6
+
This is a living document. We believe the roadmap should be shaped by the needs of our user community. Many of the items below are contributions made by downstream users.
7
7
Input is always welcome e.g. via GitHub issues or pull requests.
8
8
9
9
This is the roadmap of the Rust implementation of libp2p.
Copy file name to clipboardexpand all lines: libp2p/CHANGELOG.md
+3
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,9 @@
5
5
- Introduce `libp2p-peer-store`.
6
6
See [PR 5724](https://github.com/libp2p/rust-libp2p/pull/5724).
7
7
8
+
- Make the `*-websys` variants (`libp2p-webrtc-websys`, `libp2p-websocket-websys`, `libp2p-webtransport-websys`) only available on wasm32 target architecture.
9
+
See [PR 5891](https://github.com/libp2p/rust-libp2p/pull/5891).
Copy file name to clipboardexpand all lines: swarm/CHANGELOG.md
+3-1
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,6 @@
1
-
## 0.46.1
1
+
## 0.47.0
2
+
- Separate the `PendingConnectionError` into two parts `PendingOutboundConnectionError` and `PendingInboundConnectionError` to have better control over error handling. See [PR](https://github.com/libp2p/rust-libp2p/pull/5861)
0 commit comments