[package]
name = "linked-list"
version = "0.2.0"
license = "MIT OR Apache-2.0"
description = "An alternative implementation of std::collections::LinkedList"
authors = [
"Alexis Beingessner <a.beingessner@gmail.com>",
"Peter Blackson <pioczarn@gmail.com>",
]
edition = "2024"
rust-version = "1.85"
repository = "https://github.com/contain-rs/linked-list"
homepage = "https://github.com/contain-rs/linked-list"
documentation = "https://docs.rs/linked-list/latest/linked_list"
keywords = ["data-structures"]
readme = "README.md"
[dependencies]
allocator-api2 = "0.4"
serde = { version = "1.0", default-features = false, features = ["derive", "alloc"], optional = true }
borsh = { version = "1.8", default-features = false, features = ["derive"], optional = true }
miniserde = { version = "0.1", optional = true }
nanoserde = { version = "0.1", optional = true }
[dev-dependencies]
serde_json = "1.0"
[features]
default = ["std"]
std = ["serde?/std", "borsh?/std"]
[package.metadata.docs.rs]
features = ["serde", "miniserde", "nanoserde", "borsh"]