splay_tree 0.5.0

Splay Tree based Data Structures (map, set, heap)
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 = "2024"
rust-version = "1.88"
name = "splay_tree"
version = "0.5.0"
authors = ["Takeru Ohta <phjgt308@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Splay Tree based Data Structures (map, set, heap)"
homepage = "https://github.com/sile/splay_tree"
readme = "README.md"
categories = [
    "data-structures",
    "no-std",
]
license = "MIT"
repository = "https://github.com/sile/splay_tree"

[features]
default = ["std"]
std = []

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

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

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

[[bench]]
name = "bench"
path = "benches/bench.rs"

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

[dev-dependencies.rand]
version = "0.10"

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