40 lines
1.2 KiB
TOML
40 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 believe there's an error in this file please file an
|
|
# issue against the rust-lang/cargo repository. If you're
|
|
# editing this file be aware that the upstream Cargo.toml
|
|
# will likely look very different (and much more reasonable)
|
|
|
|
[package]
|
|
edition = "2018"
|
|
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"
|
|
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.5.4"
|
|
[dev-dependencies.rand]
|
|
version = "0.7.3"
|
|
|
|
[dev-dependencies.rand_xorshift]
|
|
version = "0.2.0"
|
|
|
|
[dev-dependencies.typed-arena]
|
|
version = "2.0.1"
|
|
|
|
[features]
|
|
alloc = []
|
|
default = ["alloc"]
|
|
nightly = []
|