splaylist 0.1.0

A self-balancing skip list: an ordered map/set whose node heights adapt to the access pattern, so frequently-used keys become cheaper to reach.
Documentation
# 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 = "2021"
rust-version = "1.70"
name = "splaylist"
version = "0.1.0"
authors = ["Gregory Burd <greg@burd.me>"]
build = false
exclude = [
    "/.github",
    "/.forgejo",
    "/fuzz",
    "/comparison",
    "/hegel-tests",
    "/benches/results",
    "AGENTS.md",
    "/.agent",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A self-balancing skip list: an ordered map/set whose node heights adapt to the access pattern, so frequently-used keys become cheaper to reach."
homepage = "https://codeberg.org/gregburd/skiplist"
documentation = "https://docs.rs/splaylist"
readme = "README.md"
keywords = [
    "skiplist",
    "splaylist",
    "ordered-map",
    "adaptive",
    "data-structure",
]
categories = [
    "data-structures",
    "no-std",
]
license = "MIT OR Apache-2.0"
repository = "https://codeberg.org/gregburd/skiplist"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
    "--cfg",
    "docsrs",
]

[features]
default = ["std"]
dot = []
serde = ["dep:serde"]
std = []

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

[[example]]
name = "skewed_access"
path = "examples/skewed_access.rs"

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

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

[[bench]]
name = "splaylist"
path = "benches/splaylist.rs"
harness = false

[dependencies.serde]
version = "1"
features = ["alloc"]
optional = true
default-features = false

[dev-dependencies.criterion]
version = "0.5"

[dev-dependencies.serde_json]
version = "1"

[lints.clippy]
module_name_repetitions = "allow"

[lints.clippy.pedantic]
level = "warn"
priority = -1

[lints.rust]
missing_docs = "warn"
unsafe_code = "forbid"

[profile.bench]
debug = 2