linked-list 0.2.0

An alternative implementation of std::collections::LinkedList
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.85"
name = "linked-list"
version = "0.2.0"
authors = [
    "Alexis Beingessner <a.beingessner@gmail.com>",
    "Peter Blackson <pioczarn@gmail.com>",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "An alternative implementation of std::collections::LinkedList"
homepage = "https://github.com/contain-rs/linked-list"
documentation = "https://docs.rs/linked-list/latest/linked_list"
readme = "README.md"
keywords = ["data-structures"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/contain-rs/linked-list"

[package.metadata.docs.rs]
features = [
    "serde",
    "miniserde",
    "nanoserde",
    "borsh",
]

[features]
default = ["std"]
std = [
    "serde?/std",
    "borsh?/std",
]

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

[dependencies.allocator-api2]
version = "0.4"

[dependencies.borsh]
version = "1.8"
features = ["derive"]
optional = true
default-features = false

[dependencies.miniserde]
version = "0.1"
optional = true

[dependencies.nanoserde]
version = "0.1"
optional = true

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

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