-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merge master #18
Merge master #18
Commits on Aug 11, 2021
-
protocols/gossipsub: Fix inconsistency in mesh peer tracking (libp2p#…
…2189) Co-authored-by: Age Manning <Age@AgeManning.com>
Configuration menu - View commit details
-
Copy full SHA for ce23cbe - Browse repository at this point
Copy the full SHA ce23cbeView commit details
Commits on Aug 13, 2021
-
misc/metrics: Add auxiliary crate to record events as OpenMetrics (li…
…bp2p#2063) This commit adds an auxiliary crate recording protocol and Swarm events and exposing them as metrics in the OpenMetrics format.
Configuration menu - View commit details
-
Copy full SHA for 98bc5e6 - Browse repository at this point
Copy the full SHA 98bc5e6View commit details
Commits on Aug 16, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 0afed65 - Browse repository at this point
Copy the full SHA 0afed65View commit details -
examples/: Add file sharing example (libp2p#2186)
Basic file sharing application with peers either providing or locating and getting files by name. While obviously showcasing how to build a basic file sharing application, the actual goal of this example is **to show how to integrate rust-libp2p into a larger application**. Architectural properties - Clean clonable async/await interface ([`Client`]) to interact with the network layer. - Single task driving the network layer, no locks required.
Configuration menu - View commit details
-
Copy full SHA for d3f5a1e - Browse repository at this point
Copy the full SHA d3f5a1eView commit details -
Configuration menu - View commit details
-
Copy full SHA for a5b6a0b - Browse repository at this point
Copy the full SHA a5b6a0bView commit details
Commits on Aug 17, 2021
-
protocols/kad: Enable filtering of (provider) records (libp2p#2163)
Introduce `KademliaStoreInserts` option, which allows to filter records. Co-authored-by: Max Inden <mail@max-inden.de>
Configuration menu - View commit details
-
Copy full SHA for c58f697 - Browse repository at this point
Copy the full SHA c58f697View commit details -
swarm/src/protocols_handler: Impl ProtocolsHandler on either::Either (l…
…ibp2p#2192) Implement ProtocolsHandler on either::Either representing either of two ProtocolsHandler implementations. Co-authored-by: Thomas Eizinger <thomas@eizinger.io>
Configuration menu - View commit details
-
Copy full SHA for 49acf2e - Browse repository at this point
Copy the full SHA 49acf2eView commit details
Commits on Aug 18, 2021
-
*: Make libp2p-core default features optional (libp2p#2181)
Co-authored-by: Max Inden <mail@max-inden.de>
Configuration menu - View commit details
-
Copy full SHA for f2905c0 - Browse repository at this point
Copy the full SHA f2905c0View commit details
Commits on Aug 19, 2021
-
core/: Remove DisconnectedPeer::set_connected and Pool::add (libp2p#2195
) This logic seems to be a leftover of libp2p#889 and unused today.
Configuration menu - View commit details
-
Copy full SHA for 1e9fcf9 - Browse repository at this point
Copy the full SHA 1e9fcf9View commit details -
protocols/gossipsub: Use ed25519 in tests (libp2p#2197)
With f2905c0 the secp256k1 feature is disabled by default. Instead of enabling it in the dev-dependency, simply use ed25519.
Configuration menu - View commit details
-
Copy full SHA for 25004c4 - Browse repository at this point
Copy the full SHA 25004c4View commit details
Commits on Aug 26, 2021
-
build(deps): Update minicbor requirement from 0.10 to 0.11 (libp2p#2200)
Updates the requirements on [minicbor](https://gitlab.com/twittner/minicbor) to permit the latest version. - [Release notes](https://gitlab.com/twittner/minicbor/tags) - [Changelog](https://gitlab.com/twittner/minicbor/blob/master/CHANGELOG.md) - [Commits](https://gitlab.com/twittner/minicbor/compare/minicbor-v0.10.0...minicbor-v0.11.0) --- updated-dependencies: - dependency-name: minicbor dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for d617105 - Browse repository at this point
Copy the full SHA d617105View commit details
Commits on Aug 30, 2021
-
build(deps): Update salsa20 requirement from 0.8 to 0.9 (libp2p#2206)
* build(deps): Update salsa20 requirement from 0.8 to 0.9 Updates the requirements on [salsa20](https://github.com/RustCrypto/stream-ciphers) to permit the latest version. - [Release notes](https://github.com/RustCrypto/stream-ciphers/releases) - [Commits](RustCrypto/stream-ciphers@ctr-v0.8.0...salsa20-v0.9.0) --- updated-dependencies: - dependency-name: salsa20 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> * *: Bump pnet to v0.22 Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Max Inden <mail@max-inden.de>
Configuration menu - View commit details
-
Copy full SHA for b55ee69 - Browse repository at this point
Copy the full SHA b55ee69View commit details
Commits on Aug 31, 2021
-
*: Dial with handler and return handler on error and closed (libp2p#2191
) Require `NetworkBehaviourAction::{DialPeer,DialAddress}` to contain a `ProtocolsHandler`. This allows a behaviour to attach custom state to its handler. The behaviour would no longer need to track this state separately during connection establishment, thus reducing state required in a behaviour. E.g. in the case of `libp2p-kad` the behaviour can include a `GetRecord` request in its handler, or e.g. in the case of `libp2p-request-response` the behaviour can include the first request in the handler. Return `ProtocolsHandler` on connection error and close. This allows a behaviour to extract its custom state previously included in the handler on connection failure and connection closing. E.g. in the case of `libp2p-kad` the behaviour could extract the attached `GetRecord` from the handler of the failed connection and then start another connection attempt with a new handler with the same `GetRecord` or bubble up an error to the user. Co-authored-by: Thomas Eizinger <thomas@eizinger.io>
Configuration menu - View commit details
-
Copy full SHA for c161acf - Browse repository at this point
Copy the full SHA c161acfView commit details
Commits on Sep 6, 2021
-
core/: Remove deprecated read/write functions (libp2p#2213)
Co-authored-by: Max Inden <mail@max-inden.de>
Configuration menu - View commit details
-
Copy full SHA for 6924e5e - Browse repository at this point
Copy the full SHA 6924e5eView commit details -
protocols/ping: Revise naming of symbols (libp2p#2215)
Co-authored-by: Max Inden <mail@max-inden.de>
Configuration menu - View commit details
-
Copy full SHA for c1ae8a0 - Browse repository at this point
Copy the full SHA c1ae8a0View commit details
Commits on Sep 7, 2021
-
protocols/rendezvous: Implement protocol (libp2p#2107)
Implement the libp2p rendezvous protocol. > A lightweight mechanism for generalized peer discovery. It can be used for bootstrap purposes, real time peer discovery, application specific routing, and so on. Co-authored-by: rishflab <rishflab@hotmail.com> Co-authored-by: Daniel Karzel <daniel@comit.network>
Configuration menu - View commit details
-
Copy full SHA for adcfdc0 - Browse repository at this point
Copy the full SHA adcfdc0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 733a0b6 - Browse repository at this point
Copy the full SHA 733a0b6View commit details -
protocols/mdns: Do not fire all timers at the same time. (libp2p#2212)
Co-authored-by: Max Inden <mail@max-inden.de>
Configuration menu - View commit details
-
Copy full SHA for 67722c5 - Browse repository at this point
Copy the full SHA 67722c5View commit details
Commits on Sep 8, 2021
-
misc/metrics/src/kad: Set query_duration lowest bucket to 0.1 sec (li…
…bp2p#2219) Probability for a Kademlia query to return in less than 100 milliseconds is low, thus increasing the lower bucket to improve accuracy within the higher ranges.
Configuration menu - View commit details
-
Copy full SHA for 9b1f405 - Browse repository at this point
Copy the full SHA 9b1f405View commit details
Commits on Sep 9, 2021
-
misc/metrics/src/swarm: Expose role on connections_closed (libp2p#2220)
Expose whether closed connection was a Dialer or Listener.
Configuration menu - View commit details
-
Copy full SHA for fcb2f62 - Browse repository at this point
Copy the full SHA fcb2f62View commit details
Commits on Sep 14, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 2a6a1cc - Browse repository at this point
Copy the full SHA 2a6a1ccView commit details -
protocols/rendezvous: Update prost (libp2p#2226)
Co-authored-by: Max Inden <mail@max-inden.de>
Configuration menu - View commit details
-
Copy full SHA for 5f68c74 - Browse repository at this point
Copy the full SHA 5f68c74View commit details -
Configuration menu - View commit details
-
Copy full SHA for b79fd02 - Browse repository at this point
Copy the full SHA b79fd02View commit details -
swarm-derive/: Make event_process = false the default (libp2p#2214)
Co-authored-by: Max Inden <mail@max-inden.de>
Configuration menu - View commit details
-
Copy full SHA for e83e1b3 - Browse repository at this point
Copy the full SHA e83e1b3View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8ed0e26 - Browse repository at this point
Copy the full SHA 8ed0e26View commit details