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"