1# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
2#
3# When uploading crates to the registry Cargo will automatically
4# "normalize" Cargo.toml files for maximal compatibility
5# with all versions of Cargo and also rewrite `path` dependencies
6# to registry (e.g., crates.io) dependencies.
7#
8# If you are reading this file be aware that the original Cargo.toml
9# will likely look very different (and much more reasonable).
10# See Cargo.toml.orig for the original contents.
11
12[package]
13edition = "2018"
14name = "intrusive-collections"
15version = "0.9.6"
16authors = ["Amanieu d'Antras <[email protected]>"]
17description = "Intrusive collections for Rust (linked list and red-black tree)"
18documentation = "https://docs.rs/intrusive-collections"
19readme = "README.md"
20keywords = [
21    "intrusive",
22    "no_std",
23    "list",
24    "rbtree",
25]
26categories = [
27    "data-structures",
28    "no-std",
29]
30license = "Apache-2.0/MIT"
31repository = "https://github.com/Amanieu/intrusive-rs"
32
33[dependencies.memoffset]
34version = "0.9"
35
36[dev-dependencies.rand]
37version = "0.8.4"
38
39[dev-dependencies.rand_xorshift]
40version = "0.3.0"
41
42[dev-dependencies.typed-arena]
43version = "2.0.1"
44
45[features]
46alloc = []
47default = ["alloc"]
48nightly = []
49