[package]
edition = "2021"
rust-version = "1.65"
name = "skippy"
version = "0.1.2"
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Highly flexible worst-case O(log n) intrusive skip list"
documentation = "https://docs.rs/skippy"
readme = ".misc/package-readme.md"
keywords = [
"skip-list",
"intrusive",
"list",
"tree",
]
categories = [
"data-structures",
"no-std",
]
license = "AGPL-3.0-or-later WITH AdditionRef-Eips-exceptions"
repository = "https://github.com/taylordotfish/skippy"
[package.metadata.docs.rs]
features = ["allocator_api"]
[features]
allocator_api = ["allocator-fallback?/allocator_api"]
default = [
"std",
"allocator-fallback",
]
std = []
[lib]
name = "skippy"
path = "src/lib.rs"
[[test]]
name = "tests"
path = "tests/tests.rs"
[dependencies.allocator-fallback]
version = "0.1.7"
optional = true
default-features = false
[dependencies.cell-ref]
version = "0.1"
[dependencies.integral_constant]
version = "0.1"
[dependencies.tagged-pointer]
version = "0.2.4"
[build-dependencies.allocator-fallback]
version = "0.1.7"
optional = true
default-features = false
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = [
"cfg(any_allocator_api)",
"cfg(has_allocator_api)",
"cfg(skippy_debug)",
]