Skip to content

Commit 7587f22

Browse files
committed
Merge branch 'master' of github.com:libp2p/rust-libp2p into update-webrtc
2 parents c0cff2a + 2d7ce54 commit 7587f22

File tree

71 files changed

+92
-83
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

71 files changed

+92
-83
lines changed

Cargo.lock

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@ resolver = "2"
7171

7272
[workspace.package]
7373
rust-version = "1.83.0"
74+
edition = "2021"
7475

7576
[workspace.dependencies]
7677
libp2p = { version = "0.55.1", path = "libp2p" }
@@ -81,7 +82,7 @@ libp2p-core = { version = "0.43.0", path = "core" }
8182
libp2p-dcutr = { version = "0.13.0", path = "protocols/dcutr" }
8283
libp2p-dns = { version = "0.43.0", path = "transports/dns" }
8384
libp2p-floodsub = { version = "0.46.1", path = "protocols/floodsub" }
84-
libp2p-gossipsub = { version = "0.48.1", path = "protocols/gossipsub" }
85+
libp2p-gossipsub = { version = "0.49.0", path = "protocols/gossipsub" }
8586
libp2p-identify = { version = "0.47.0", path = "protocols/identify" }
8687
libp2p-identity = { version = "0.2.10" }
8788
libp2p-kad = { version = "0.47.0", path = "protocols/kad" }

core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "libp2p-core"
3-
edition = "2021"
3+
edition.workspace = true
44
rust-version = { workspace = true }
55
description = "Core traits and structs of libp2p"
66
version = "0.43.0"

examples/autonat/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "autonat-example"
33
version = "0.1.0"
4-
edition = "2021"
4+
edition.workspace = true
55
publish = false
66
license = "MIT or Apache-2.0"
77

examples/autonatv2/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "autonatv2"
33
version = "0.1.0"
4-
edition = "2021"
4+
edition.workspace = true
55
publish = false
66
license = "MIT or Apache-2.0"
77

examples/browser-webrtc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
authors = ["Doug Anderson <douganderson444@peerpiper.io>"]
33
description = "Example use of the WebRTC transport in a browser wasm environment"
4-
edition = "2021"
4+
edition.workspace = true
55
license = "MIT"
66
name = "browser-webrtc-example"
77
publish = false

examples/chat/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "chat-example"
33
version = "0.1.0"
4-
edition = "2021"
4+
edition.workspace = true
55
publish = false
66
license = "MIT"
77

examples/dcutr/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "dcutr-example"
33
version = "0.1.0"
4-
edition = "2021"
4+
edition.workspace = true
55
publish = false
66
license = "MIT"
77

examples/distributed-key-value-store/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "distributed-key-value-store-example"
33
version = "0.1.0"
4-
edition = "2021"
4+
edition.workspace = true
55
publish = false
66
license = "MIT"
77

examples/file-sharing/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "file-sharing-example"
33
version = "0.1.0"
4-
edition = "2021"
4+
edition.workspace = true
55
publish = false
66
license = "MIT"
77

0 commit comments

Comments
 (0)