mirror of
https://github.com/threefoldtech/mycelium.git
synced 2026-03-29 07:39:51 +00:00
Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.38.0 to 1.38.1. - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.38.0...tokio-1.38.1) --- updated-dependencies: - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
26 lines
671 B
TOML
26 lines
671 B
TOML
[package]
|
|
name = "mycelium-metrics"
|
|
version = "0.5.3"
|
|
edition = "2021"
|
|
license-file = "../LICENSE"
|
|
readme = "../README.md"
|
|
|
|
[features]
|
|
prometheus = ["dep:axum", "dep:prometheus", "dep:tokio", "dep:tracing"]
|
|
|
|
[dependencies]
|
|
axum = { version = "0.7.5", default-features = false, optional = true, features = [
|
|
"http1",
|
|
"http2",
|
|
"tokio",
|
|
] }
|
|
mycelium = { path = "../mycelium", default-features = false }
|
|
prometheus = { version = "0.13.4", default-features = false, optional = true, features = [
|
|
"process",
|
|
] }
|
|
tokio = { version = "1.38.1", default-features = false, optional = true, features = [
|
|
"net",
|
|
"rt",
|
|
] }
|
|
tracing = { version = "0.1.40", optional = true }
|