49 lines
1.2 KiB
TOML
49 lines
1.2 KiB
TOML
# 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.5"
|
|
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.8"
|
|
|
|
[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 = []
|