[package]
edition = "2024"
name = "embed-dlist"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "intrusive doubly linkedlist"
homepage = "https://github.com/NaturalIO/embed-collections-rs"
readme = "README.md"
keywords = [
"linked-list",
"intrusive",
]
categories = [
"data-structures",
"no-std",
]
license = "MIT OR Apache-2.0"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
default = []
std = []
[lib]
name = "embed_dlist"
path = "src/lib.rs"
[dependencies.pointers]
version = "0"
[dev-dependencies.log]
version = "0"
[lints.clippy]
collapsible_else_if = "allow"
collapsible_match = "allow"
len_without_is_empty = "allow"
mut_from_ref = "allow"
needless_range_loop = "allow"
new_ret_no_self = "allow"
new_without_default = "allow"
result_unit_err = "allow"
transmute_ptr_to_ref = "allow"
type_complexity = "allow"