blob: 909123e57c5a57703ca2bb903c5fff545ec44399 [file] [log] [blame]
Victor Hsieh8dc097a2020-12-15 13:56:43 -08001[package]
2name = "intrusive-collections"
David LeGare11e2ac62022-03-02 16:21:09 +00003version = "0.9.3"
Victor Hsieh8dc097a2020-12-15 13:56:43 -08004authors = ["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]
Victor Hsieh34c140b2021-07-15 16:10:47 -070023rand = "0.8.4"
Victor Hsieh8dc097a2020-12-15 13:56:43 -080024typed-arena = "2.0.1"
Victor Hsieh34c140b2021-07-15 16:10:47 -070025rand_xorshift = "0.3.0"