• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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.7"
16authors = ["Amanieu d'Antras <amanieu@gmail.com>"]
17build = false
18autobins = false
19autoexamples = false
20autotests = false
21autobenches = false
22description = "Intrusive collections for Rust (linked list and red-black tree)"
23documentation = "https://docs.rs/intrusive-collections"
24readme = "README.md"
25keywords = [
26    "intrusive",
27    "no_std",
28    "list",
29    "rbtree",
30]
31categories = [
32    "data-structures",
33    "no-std",
34]
35license = "Apache-2.0/MIT"
36repository = "https://github.com/Amanieu/intrusive-rs"
37
38[lib]
39name = "intrusive_collections"
40path = "src/lib.rs"
41
42[dependencies.memoffset]
43version = "0.9"
44
45[dev-dependencies.rand]
46version = "0.8.4"
47
48[dev-dependencies.rand_xorshift]
49version = "0.3.0"
50
51[dev-dependencies.typed-arena]
52version = "2.0.1"
53
54[features]
55alloc = []
56default = ["alloc"]
57nightly = []
58