[[example]]
name = "any"
path = "examples/any.rs"
[[example]]
name = "debug"
path = "examples/debug.rs"
[[example]]
name = "slice"
path = "examples/slice.rs"
[[example]]
name = "str"
path = "examples/str.rs"
[features]
alloc = []
default = ["std"]
std = ["alloc"]
[lib]
name = "dyn_list"
path = "src/lib.rs"
[package]
authors = ["Tom Boddaert"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["data-structures", "no-std"]
description = "A linked list that can hold dynamically sized values in its nodes."
edition = "2021"
homepage = "https://github.com/tomBoddaert/dyn_list"
keywords = ["data-structures", "linked-list"]
license = "MIT OR Apache-2.0"
name = "dyn_list"
readme = "README.md"
repository = "https://github.com/tomBoddaert/dyn_list"
version = "0.1.0"