Skip to content

Commit

Permalink
Merge #190
Browse files Browse the repository at this point in the history
190: correct minor typo and bumped atomic-polyfill r=matklad a=jqnatividad



Co-authored-by: Joel Natividad <1980690+jqnatividad@users.noreply.github.com>
  • Loading branch information
bors[bot] and jqnatividad committed Aug 16, 2022
2 parents 08b6dc1 + be10103 commit f4645cb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Expand Up @@ -20,16 +20,16 @@ members = ["xtask"]

[dependencies]
# Uses parking_lot to implement once_cell::sync::OnceCell.
# This makes not speed difference, but makes each OnceCell<T>
# for up to 16 bytes smaller, depending on the size of the T.
# This makes no speed difference, but makes each OnceCell<T>
# 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
# that do not have atomics
# *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"
Expand Down

0 comments on commit f4645cb

Please sign in to comment.