[package]
edition = "2024"
rust-version = "1.88.0"
name = "databoard"
version = "0.3.1"
authors = ["stepkun <stephan.kunz@kabelbw.de>"]
build = false
exclude = [
"laze*",
"benches/**",
"embedded/**",
"examples/**",
"tests/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Provides a hierarchical key-value-store"
homepage = "http://github.com/stepkun/databoard.git"
documentation = "https://docs.rs/databoard"
readme = "README.md"
keywords = [
"blackboard",
"data",
"key",
"store",
"value",
]
categories = [
"database-implementations",
"data-structures",
"no-std",
]
license-file = "LICENSE"
repository = "https://github.com/stepkun/databoard.git"
resolver = "3"
[features]
default = ["std"]
std = []
[lib]
name = "databoard"
path = "src/lib.rs"
[dependencies.spin]
version = "0.10.0"
features = [
"portable-atomic",
"rwlock",
"use_ticket_mutex",
]
default-features = false
[dev-dependencies.criterion]
version = "0.8"
[dev-dependencies.doc-comment]
version = "0.3.4"
[build-dependencies]
[lints.clippy]
enum_glob_use = "deny"
expect_used = "deny"
panic = "deny"
unwrap_used = "deny"
[lints.clippy.nursery]
level = "deny"
priority = -1
[lints.clippy.pedantic]
level = "deny"
priority = -1
[lints.rust]
missing_docs = "warn"
unsafe_code = "warn"
unused_must_use = "warn"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(context, values(any()))"]
[lints.rustdoc]
private_intra_doc_links = "allow"