-
Notifications
You must be signed in to change notification settings - Fork 976
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: RUSTSEC-2024-0421 by upgrading idna
https://rustsec.org/advisories/RUSTSEC-2024-0421.html Pull-Request: #5727.
- Loading branch information
1 parent
524afb4
commit cda1470
Showing
8 changed files
with
358 additions
and
74 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
name = "libp2p-mdns" | ||
edition = "2021" | ||
rust-version = { workspace = true } | ||
version = "0.46.0" | ||
version = "0.46.1" | ||
description = "Implementation of the libp2p mDNS discovery method" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
license = "MIT" | ||
|
@@ -24,7 +24,7 @@ smallvec = "1.13.2" | |
socket2 = { version = "0.5.7", features = ["all"] } | ||
tokio = { workspace = true, default-features = false, features = ["net", "time"], optional = true} | ||
tracing = { workspace = true } | ||
hickory-proto = { version = "0.24.1", default-features = false, features = ["mdns"] } | ||
hickory-proto = { workspace = true, features = ["mdns"] } | ||
|
||
[features] | ||
tokio = ["dep:tokio", "if-watch/tokio"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,21 +3,21 @@ name = "libp2p-dns" | |
edition = "2021" | ||
rust-version = { workspace = true } | ||
description = "DNS transport implementation for libp2p" | ||
version = "0.42.0" | ||
version = "0.42.1" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
license = "MIT" | ||
repository = "https://github.com/libp2p/rust-libp2p" | ||
keywords = ["peer-to-peer", "libp2p", "networking"] | ||
categories = ["network-programming", "asynchronous"] | ||
|
||
[dependencies] | ||
async-std-resolver = { version = "0.24", optional = true } | ||
async-std-resolver = { workspace = true, features = ["system-config"], optional = true } | ||
async-trait = "0.1.80" | ||
futures = { workspace = true } | ||
libp2p-core = { workspace = true } | ||
libp2p-identity = { workspace = true } | ||
parking_lot = "0.12.3" | ||
hickory-resolver = { version = "0.24.1", default-features = false, features = ["system-config"] } | ||
hickory-resolver = { workspace = true, features = ["system-config"] } | ||
smallvec = "1.13.2" | ||
tracing = { workspace = true } | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters