spin-locks 0.0.2

An Intel hardware-optimized spin lock that uses Hardware Lock Elision (HLE) and a non-CAS based spin lock (an OR lock) as a fast fallback.
[package]
authors = ["Raphael Cohn <raphael.cohn@stormmq.com>"]
categories = ["hardware-support", "concurrency"]
description = "An Intel hardware-optimized spin lock that uses Hardware Lock Elision (HLE) and a non-CAS based spin lock (an OR lock) as a fast fallback."
exclude = ["*"]
homepage = "https://github.com/lemonrock/spin-locks"
include = ["README.md", "LICENSE", "COPYRIGHT", "src/**/*.rs", "Cargo.toml", "rustfmt.toml", "clippy.toml"]
keywords = ["intel", "hle", "spinlock", "spin", "lock"]
license = "MIT"
name = "spin-locks"
publish = true
readme = "README.md"
repository = "https://github.com/lemonrock/spin-locks.git"
version = "0.0.2"

[profile.release]
codegen-units = 1
debug = false
debug-assertions = false
lto = true
opt-level = 3
rpath = false

[target.'cfg(any(target_arch = "x86", target_arch = "x86_64"))'.dependencies.intel-tsx-hle]
version = "0.0.0"