1[package] 2name = "intrusive-collections" 3version = "0.9.0" 4authors = ["Amanieu d'Antras <amanieu@gmail.com>"] 5description = "Intrusive collections for Rust (linked list and red-black tree)" 6documentation = "https://docs.rs/intrusive-collections" 7license = "Apache-2.0/MIT" 8repository = "https://github.com/Amanieu/intrusive-rs" 9readme = "README.md" 10keywords = ["intrusive", "no_std", "list", "rbtree"] 11categories = ["data-structures", "no-std"] 12edition = "2018" 13 14[features] 15nightly = [] 16alloc = [] 17default = ["alloc"] 18 19[dependencies] 20memoffset = "0.5.4" 21 22[dev-dependencies] 23rand = "0.7.3" 24typed-arena = "2.0.1" 25rand_xorshift = "0.2.0" 26