mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 08:47:57 +00:00
4a3758d9b8
* Bump log from 0.4.16 to 0.4.17 Bumps [log](https://github.com/rust-lang/log) from 0.4.16 to 0.4.17. - [Release notes](https://github.com/rust-lang/log/releases) - [Changelog](https://github.com/rust-lang/log/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/log/commits/0.4.17) --- updated-dependencies: - dependency-name: log dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> * Update Cargo.lock Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Shawn Tabrizi <shawntabrizi@gmail.com>
26 lines
884 B
TOML
26 lines
884 B
TOML
[package]
|
|
description = "Endpoint to expose Prometheus metrics"
|
|
name = "substrate-prometheus-endpoint"
|
|
version = "0.10.0-dev"
|
|
license = "Apache-2.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2021"
|
|
homepage = "https://substrate.io"
|
|
repository = "https://github.com/paritytech/substrate/"
|
|
readme = "README.md"
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
futures-util = { version = "0.3.19", default-features = false, features = ["io"] }
|
|
hyper = { version = "0.14.16", default-features = false, features = ["http1", "server", "tcp"] }
|
|
log = "0.4.17"
|
|
prometheus = { version = "0.13.0", default-features = false }
|
|
thiserror = "1.0"
|
|
tokio = { version = "1.17.0", features = ["parking_lot"] }
|
|
|
|
[dev-dependencies]
|
|
hyper = { version = "0.14.16", features = ["client"] }
|
|
tokio = { version = "1.17.0", features = ["rt-multi-thread"] }
|