aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: e60f7e30a95fe75e7c53bef1280b8500733fc32e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2018"
name = "intrusive-collections"
version = "0.9.6"
authors = ["Amanieu d'Antras <amanieu@gmail.com>"]
description = "Intrusive collections for Rust (linked list and red-black tree)"
documentation = "https://docs.rs/intrusive-collections"
readme = "README.md"
keywords = [
    "intrusive",
    "no_std",
    "list",
    "rbtree",
]
categories = [
    "data-structures",
    "no-std",
]
license = "Apache-2.0/MIT"
repository = "https://github.com/Amanieu/intrusive-rs"

[dependencies.memoffset]
version = "0.9"

[dev-dependencies.rand]
version = "0.8.4"

[dev-dependencies.rand_xorshift]
version = "0.3.0"

[dev-dependencies.typed-arena]
version = "2.0.1"

[features]
alloc = []
default = ["alloc"]
nightly = []