forked from libp2p/rust-libp2p
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build(deps): Update open-metrics-client requirement from 0.12.0 to 0.…
…13.0 (libp2p#2355) * build(deps): Update open-metrics-client requirement Updates the requirements on [open-metrics-client](https://github.com/mxinden/rust-open-metrics-client) to permit the latest version. - [Release notes](https://github.com/mxinden/rust-open-metrics-client/releases) - [Changelog](https://github.com/mxinden/rust-open-metrics-client/blob/master/CHANGELOG.md) - [Commits](prometheus/client_rust@v0.12.0...v0.13.0) --- updated-dependencies: - dependency-name: open-metrics-client dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Max Inden <[email protected]>
- Loading branch information
1 parent
eb46b71
commit cb25526
Showing
6 changed files
with
19 additions
and
11 deletions.
There are no files selected for viewing
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,3 +1,7 @@ | ||
# 0.3.0 [unreleased] | ||
|
||
- Update dependencies. | ||
|
||
# 0.2.0 [2021-11-16] | ||
|
||
- Include gossipsub metrics (see [PR 2316]). | ||
|
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-metrics" | ||
edition = "2018" | ||
description = "Metrics for libp2p" | ||
version = "0.2.0" | ||
version = "0.3.0" | ||
authors = ["Max Inden <[email protected]>"] | ||
license = "MIT" | ||
repository = "https://github.com/libp2p/rust-libp2p" | ||
|
@@ -17,12 +17,12 @@ ping = ["libp2p-ping"] | |
|
||
[dependencies] | ||
libp2p-core = { version = "0.30.0", path = "../../core" } | ||
libp2p-gossipsub = { version = "0.34.0", path = "../../protocols/gossipsub", optional = true } | ||
libp2p-gossipsub = { version = "0.35.0", path = "../../protocols/gossipsub", optional = true } | ||
libp2p-identify = { version = "0.32.0", path = "../../protocols/identify", optional = true } | ||
libp2p-kad = { version = "0.33.0", path = "../../protocols/kad", optional = true } | ||
libp2p-ping = { version = "0.32.0", path = "../../protocols/ping", optional = true } | ||
libp2p-swarm = { version = "0.32.0", path = "../../swarm" } | ||
open-metrics-client = "0.12.0" | ||
open-metrics-client = "0.13.0" | ||
|
||
[dev-dependencies] | ||
env_logger = "0.8.1" | ||
|
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-gossipsub" | ||
edition = "2018" | ||
description = "Gossipsub protocol for libp2p" | ||
version = "0.34.0" | ||
version = "0.35.0" | ||
authors = ["Age Manning <[email protected]>"] | ||
license = "MIT" | ||
repository = "https://github.com/libp2p/rust-libp2p" | ||
|
@@ -30,7 +30,7 @@ futures-timer = "3.0.2" | |
pin-project = "1.0.8" | ||
instant = "0.1.11" | ||
# Metrics dependencies | ||
open-metrics-client = "0.12" | ||
open-metrics-client = "0.13" | ||
|
||
[dev-dependencies] | ||
async-std = "1.6.3" | ||
|