skippy 0.1.0

Highly flexible worst-case O(log n) intrusive skip list
Documentation
[build-dependencies.allocator-fallback]
default-features = false
optional = true
version = "0.1.7"

[dependencies.allocator-fallback]
default-features = false
optional = true
version = "0.1.7"

[dependencies.cell-ref]
version = "0.1"

[dependencies.integral_constant]
version = "0.1"

[dependencies.tagged-pointer]
version = "0.2.4"

[features]
allocator_api = ["allocator-fallback?/allocator_api"]
default = ["std", "allocator-fallback"]
std = []

[lib]
name = "skippy"
path = "src/lib.rs"

[lints.rust.unexpected_cfgs]
check-cfg = ["cfg(any_allocator_api)", "cfg(has_allocator_api)", "cfg(skippy_debug)"]
level = "warn"
priority = 0

[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = "build.rs"
categories = ["data-structures", "no-std"]
description = "Highly flexible worst-case O(log n) intrusive skip list"
documentation = "https://docs.rs/skippy"
edition = "2021"
keywords = ["skip-list", "intrusive", "list", "tree"]
license = "AGPL-3.0-or-later"
name = "skippy"
readme = ".misc/package-readme.md"
repository = "https://github.com/taylordotfish/skippy"
rust-version = "1.65"
version = "0.1.0"

[package.metadata.docs.rs]
features = ["allocator_api"]

[[test]]
name = "tests"
path = "tests/tests.rs"