From d5c585ee1fe99eb7535bfe34303a9c6154032395 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 28 Sep 2021 23:11:29 +0000 Subject: [PATCH] Update prometheus requirement from 0.12 to 0.13 Updates the requirements on [prometheus](https://github.com/tikv/rust-prometheus) to permit the latest version. - [Release notes](https://github.com/tikv/rust-prometheus/releases) - [Changelog](https://github.com/tikv/rust-prometheus/blob/master/CHANGELOG.md) - [Commits](https://github.com/tikv/rust-prometheus/compare/v0.12.0...v0.13.0) --- updated-dependencies: - dependency-name: prometheus dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- examples/Cargo.toml | 2 +- hitbox/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/Cargo.toml b/examples/Cargo.toml index 6f1bcb1..9d00847 100644 --- a/examples/Cargo.toml +++ b/examples/Cargo.toml @@ -18,7 +18,7 @@ serde_qs = { version = "0.8" } serde = { version = "1", features = ["derive"] } chrono = { version = "0.4", features = ["serde"] } thiserror = "1" -prometheus = { version = "0.12" } +prometheus = { version = "0.13" } env_logger = "0.9" actix_derive = "0.6" actix-web = "4.0.0-beta" diff --git a/hitbox/Cargo.toml b/hitbox/Cargo.toml index 8dd111f..4daba2a 100644 --- a/hitbox/Cargo.toml +++ b/hitbox/Cargo.toml @@ -19,7 +19,7 @@ serde_qs = { version = "0.8", optional = true } serde = { version = "1", features = ["derive"] } chrono = { version = "0.4", features = ["serde"] } thiserror = "1" -prometheus = { version = "0.12", optional = true } +prometheus = { version = "0.13", optional = true } lazy_static = { version = "1", optional = true } tracing = "0.1"