-
Notifications
You must be signed in to change notification settings - Fork 957
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(server): removing dependency on libp2p-lookup (#5610)
## Description Remove dependency on [`libp2p-lookup`](https://github.com/mxinden/libp2p-lookup) which is no longer maintained, and [makes checks fail](https://github.com/libp2p/rust-libp2p/actions/runs/11016492372/job/30628121728). ## Change checklist <!-- Please add a Changelog entry in the appropriate crates and bump the crate versions if needed. See <https://github.com/libp2p/rust-libp2p/blob/master/docs/release.md#development-between-releases>--> - [x] I have performed a self-review of my own code - [x] I have made corresponding changes to the documentation - [ ] I have added tests that prove my fix is effective or that my feature works - [x] A changelog entry has been made in the appropriate crates --------- Co-authored-by: João Oliveira <[email protected]>
- Loading branch information
1 parent
fcff3f8
commit 93ad28c
Showing
6 changed files
with
55 additions
and
14 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "libp2p-server" | ||
version = "0.12.7" | ||
version = "0.12.8" | ||
authors = ["Max Inden <[email protected]>"] | ||
edition = "2021" | ||
repository = "https://github.com/libp2p/rust-libp2p" | ||
|
@@ -16,7 +16,23 @@ clap = { version = "4.5.6", features = ["derive"] } | |
futures = { workspace = true } | ||
futures-timer = "3" | ||
axum = "0.7" | ||
libp2p = { workspace = true, features = ["autonat", "dns", "tokio", "noise", "tcp", "yamux", "identify", "kad", "ping", "relay", "metrics", "rsa", "macros", "quic", "websocket"] } | ||
libp2p = { workspace = true, features = [ | ||
"autonat", | ||
"dns", | ||
"tokio", | ||
"noise", | ||
"tcp", | ||
"yamux", | ||
"identify", | ||
"kad", | ||
"ping", | ||
"relay", | ||
"metrics", | ||
"rsa", | ||
"macros", | ||
"quic", | ||
"websocket", | ||
] } | ||
prometheus-client = { workspace = true } | ||
serde = "1.0.203" | ||
serde_derive = "1.0.125" | ||
|
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