From 65dd45579cea616d73ba479a3d776725b9f269ec Mon Sep 17 00:00:00 2001 From: Joel Natividad <1980690+jqnatividad@users.noreply.github.com> Date: Sat, 13 Aug 2022 10:01:35 -0400 Subject: [PATCH 1/2] correct minor typo --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index da8a3d3..83d8af8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,8 +20,8 @@ members = ["xtask"] [dependencies] # Uses parking_lot to implement once_cell::sync::OnceCell. -# This makes not speed difference, but makes each OnceCell -# for up to 16 bytes smaller, depending on the size of the T. +# This makes no speed difference, but makes each OnceCell +# up to 16 bytes smaller, depending on the size of the T. parking_lot_core = { version = "0.9.3", optional = true, default_features = false } # To be used in order to enable the race feature on targets From be1010353b33d8fa3e7d0f5fe105cdc969a744b7 Mon Sep 17 00:00:00 2001 From: Joel Natividad <1980690+jqnatividad@users.noreply.github.com> Date: Sat, 13 Aug 2022 10:05:01 -0400 Subject: [PATCH 2/2] bump atomic-polyfill from 0.1 to 1 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 83d8af8..04bd00f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -29,7 +29,7 @@ parking_lot_core = { version = "0.9.3", optional = true, default_features = fals # *Warning:* This can be unsound. Please read the README of # [atomic-polyfill](https://github.com/embassy-rs/atomic-polyfill) # and make sure you understand all the implications -atomic-polyfill = { version = "0.1", optional = true } +atomic-polyfill = { version = "1", optional = true } [dev-dependencies] lazy_static = "1.0.0"