You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
635 B
26 lines
635 B
[package]
|
|
name = "intrusive-collections"
|
|
version = "0.9.0"
|
|
authors = ["Amanieu d'Antras <amanieu@gmail.com>"]
|
|
description = "Intrusive collections for Rust (linked list and red-black tree)"
|
|
documentation = "https://docs.rs/intrusive-collections"
|
|
license = "Apache-2.0/MIT"
|
|
repository = "https://github.com/Amanieu/intrusive-rs"
|
|
readme = "README.md"
|
|
keywords = ["intrusive", "no_std", "list", "rbtree"]
|
|
categories = ["data-structures", "no-std"]
|
|
edition = "2018"
|
|
|
|
[features]
|
|
nightly = []
|
|
alloc = []
|
|
default = ["alloc"]
|
|
|
|
[dependencies]
|
|
memoffset = "0.5.4"
|
|
|
|
[dev-dependencies]
|
|
rand = "0.7.3"
|
|
typed-arena = "2.0.1"
|
|
rand_xorshift = "0.2.0"
|