[package] name = "lock_freedom" version = "0.1.0" authors = ["Wyatt Jacob Herkamp ", "Bruno CorrĂȘa Zimmermann "] description = "This crate provides concurrent data structures and a solution to the ABA problem as an alternative of hazard pointers" repository = "https://github.com/wyatt-herkamp/lock_freedom" keywords = ["concurrency", "lock-free", "atomics", "data-structures"] categories = ["concurrency", "data-structures", "algorithms"] license = "MIT" readme = "README.md" edition = "2021" rust-version = "1.60.0" [dependencies] owned-alloc = { version = "0.2.0", package = "tux-owned-alloc" } [[bench]] name = "map" harness = false [dev-dependencies] criterion = "0.3" [features] default = ["std"] std = []