From f50f914d0c8f3fc3b5dc76fdc4f2d8c3e644c739 Mon Sep 17 00:00:00 2001 From: Fredrik Fornwall Date: Sat, 20 Jan 2024 21:30:06 +0100 Subject: [PATCH] Update `indexmap` to version `2` (#439) --- metrics-exporter-prometheus/Cargo.toml | 2 +- metrics-util/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/metrics-exporter-prometheus/Cargo.toml b/metrics-exporter-prometheus/Cargo.toml index 02b10e92..5404e2e9 100644 --- a/metrics-exporter-prometheus/Cargo.toml +++ b/metrics-exporter-prometheus/Cargo.toml @@ -27,7 +27,7 @@ metrics = { version = "^0.22", path = "../metrics" } metrics-util = { version = "^0.16", path = "../metrics-util", default-features = false, features = ["recency", "registry", "summary"] } thiserror = { version = "1", default-features = false } quanta = { version = "0.12", default-features = false } -indexmap = { version = "1", default-features = false } +indexmap = { version = "2.1", default-features = false, features = ["std"] } base64 = { version = "0.21.0", default-features = false, features = ["std"] } # Optional diff --git a/metrics-util/Cargo.toml b/metrics-util/Cargo.toml index d1f528b2..7553bae9 100644 --- a/metrics-util/Cargo.toml +++ b/metrics-util/Cargo.toml @@ -51,7 +51,7 @@ metrics = { version = "^0.22", path = "../metrics" } crossbeam-epoch = { version = "0.9.2", default-features = false, optional = true, features = ["alloc", "std"] } crossbeam-utils = { version = "0.8", default-features = false, optional = true } aho-corasick = { version = "1", default-features = false, optional = true, features = ["std"] } -indexmap = { version = "1", default-features = false, optional = true } +indexmap = { version = "2.1", default-features = false, features = ["std"], optional = true } quanta = { version = "0.12", default-features = false, optional = true } sketches-ddsketch = { version = "0.2", default-features = false, optional = true } radix_trie = { version = "0.2", default-features = false, optional = true }