-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add no-std support * Update CI and version number * Add workflows for loom and miri
- Loading branch information
Showing
8 changed files
with
196 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,21 @@ | ||
[package] | ||
name = "atom_box" | ||
version = "0.1.3" | ||
version = "0.2.0" | ||
edition = "2018" | ||
authors = ["John Bell <[email protected]>"] | ||
|
||
license = "MIT OR Apache-2.0" | ||
|
||
readme = "README.md" | ||
description = "A safe idiomatic Rust implementation of Atmoic Box using hazard pointers" | ||
description = "A safe idiomatic Rust implementation of Atomic Box using hazard pointers" | ||
repository = "https://github.com/Johnabell/atom_box.git" | ||
|
||
keywords = ["atomic", "harard", "pointers", "AtomicBox"] | ||
keywords = ["atomic", "hazard", "pointers", "AtomicBox"] | ||
categories = ["concurrency", "rust-patterns", "memory-management"] | ||
|
||
[features] | ||
default = ["std"] | ||
std = [] | ||
|
||
[target.'cfg(loom)'.dependencies] | ||
loom = "0.5" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.