From b5d8caf7c9ed5011d0485c3c826b7ac9036b9cfc Mon Sep 17 00:00:00 2001 From: Floris Bruynooghe Date: Mon, 24 May 2021 18:58:20 +0200 Subject: [PATCH] Fix minium version of crossbeam-epoch The Atomic::compare_exchange function only appears in 0.9.2. --- metrics-util/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/metrics-util/Cargo.toml b/metrics-util/Cargo.toml index 1a507d1c..74193b58 100644 --- a/metrics-util/Cargo.toml +++ b/metrics-util/Cargo.toml @@ -44,7 +44,7 @@ harness = false [dependencies] metrics = { version = "^0.16", path = "../metrics", features = ["std"] } -crossbeam-epoch = { version = "0.9", optional = true } +crossbeam-epoch = { version = "0.9.2", optional = true } crossbeam-utils = { version = "0.8", default-features = false, optional = true } atomic-shim = { version = "0.1", optional = true } aho-corasick = { version = "0.7", optional = true }