From ae5a85ac96e4724e643c3de0a2eeeca8ef408b29 Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Tue, 13 Apr 2021 23:34:06 +0900 Subject: [PATCH] Update loom to 0.5 --- crossbeam-epoch/Cargo.toml | 2 +- crossbeam-utils/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/crossbeam-epoch/Cargo.toml b/crossbeam-epoch/Cargo.toml index 8961f2576..8c4d98206 100644 --- a/crossbeam-epoch/Cargo.toml +++ b/crossbeam-epoch/Cargo.toml @@ -48,7 +48,7 @@ memoffset = "0.6" # This configuration option is outside of the normal semver guarantees: minor # versions of crossbeam may make breaking changes to it at any time. [target.'cfg(crossbeam_loom)'.dependencies] -loom-crate = { package = "loom", version = "0.4", optional = true } +loom-crate = { package = "loom", version = "0.5", optional = true } [dependencies.crossbeam-utils] version = "0.8.3" diff --git a/crossbeam-utils/Cargo.toml b/crossbeam-utils/Cargo.toml index 30697d268..fa8dde403 100644 --- a/crossbeam-utils/Cargo.toml +++ b/crossbeam-utils/Cargo.toml @@ -37,7 +37,7 @@ lazy_static = { version = "1.4.0", optional = true } # This configuration option is outside of the normal semver guarantees: minor # versions of crossbeam may make breaking changes to it at any time. [target.'cfg(crossbeam_loom)'.dependencies] -loom = { version = "0.4", optional = true } +loom = { version = "0.5", optional = true } [build-dependencies] autocfg = "1.0.0"