From 8b7088d0d99a1c000f319a1bdb2271af69baf877 Mon Sep 17 00:00:00 2001 From: Toby Lawrence Date: Tue, 30 Apr 2019 09:04:15 -0400 Subject: [PATCH] Bump metrics-core to 0.3.0 --- metrics-core/Cargo.toml | 2 +- metrics-exporter-log/Cargo.toml | 2 +- metrics-recorder-prometheus/Cargo.toml | 2 +- metrics-recorder-text/Cargo.toml | 2 +- metrics/Cargo.toml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/metrics-core/Cargo.toml b/metrics-core/Cargo.toml index a92c747..3c34089 100644 --- a/metrics-core/Cargo.toml +++ b/metrics-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "metrics-core" -version = "0.2.0" +version = "0.3.0" authors = ["Toby Lawrence "] edition = "2018" diff --git a/metrics-exporter-log/Cargo.toml b/metrics-exporter-log/Cargo.toml index be1419f..5a833cc 100644 --- a/metrics-exporter-log/Cargo.toml +++ b/metrics-exporter-log/Cargo.toml @@ -13,7 +13,7 @@ repository = "https://github.com/metrics-rs/metrics-exporter-log" documentation = "https://docs.rs/metrics-exporter-log" [dependencies] -metrics-core = { path = "../metrics-core", version = "^0.2" } +metrics-core = { path = "../metrics-core", version = "^0.3" } log = "^0.4" futures = "^0.1" tokio-timer = "^0.2" diff --git a/metrics-recorder-prometheus/Cargo.toml b/metrics-recorder-prometheus/Cargo.toml index a5d807e..081faa9 100644 --- a/metrics-recorder-prometheus/Cargo.toml +++ b/metrics-recorder-prometheus/Cargo.toml @@ -13,6 +13,6 @@ repository = "https://github.com/metrics-rs/metrics-recorder-prometheus" documentation = "https://docs.rs/metrics-recorder-prometheus" [dependencies] -metrics-core = { path = "../metrics-core", version = "^0.2" } +metrics-core = { path = "../metrics-core", version = "^0.3" } metrics-util = { path = "../metrics-util", version = "^0.1" } hdrhistogram = "^6.1" diff --git a/metrics-recorder-text/Cargo.toml b/metrics-recorder-text/Cargo.toml index d496645..351e3d1 100644 --- a/metrics-recorder-text/Cargo.toml +++ b/metrics-recorder-text/Cargo.toml @@ -13,6 +13,6 @@ repository = "https://github.com/metrics-rs/metrics-recorder-text" documentation = "https://docs.rs/metrics-recorder-text" [dependencies] -metrics-core = { path = "../metrics-core", version = "^0.2" } +metrics-core = { path = "../metrics-core", version = "^0.3" } metrics-util = { path = "../metrics-util", version = "^0.1" } hdrhistogram = "^6.1" diff --git a/metrics/Cargo.toml b/metrics/Cargo.toml index 3406f91..5066b36 100644 --- a/metrics/Cargo.toml +++ b/metrics/Cargo.toml @@ -27,7 +27,7 @@ exporters = ["metrics-exporter-log"] recorders = ["metrics-recorder-text", "metrics-recorder-prometheus"] [dependencies] -metrics-core = { path = "../metrics-core", version = "^0.2" } +metrics-core = { path = "../metrics-core", version = "^0.3" } crossbeam-channel = "^0.3" parking_lot = "^0.7" fnv = "^1.0"