databoard 0.4.0

Provides a hierarchical key-value-store
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.95.0"
name = "databoard"
version = "0.4.0"
authors = ["stepkun <stephan.kunz@kabelbw.de>"]
build = false
exclude = [
    "laze*",
    "benches/**",
    "coverage/**",
    "embedded/**",
    "examples/**",
    "tests/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Provides a hierarchical key-value-store"
homepage = "https://dibbots.com/"
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://codeberg.org/dibbots/databoard.git"
resolver = "3"

[features]
default = ["std"]
std = [
    "dataport/std",
    "spin/std",
    "thiserror/std",
    "tinyscript/std",
]

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

[dependencies.dataport]
version = "0.1"
default-features = false

[dependencies.portable-atomic-util]
version = "0.2"
features = ["alloc"]
default-features = false

[dependencies.spin]
version = "0.12"
features = [
    "portable-atomic",
    "rwlock",
    "use_ticket_mutex",
]
default-features = false

[dependencies.thiserror]
version = "2"
default-features = false

[dependencies.tinyscript]
version = "0.6"
default-features = false

[dev-dependencies.criterion]
version = "0.8"

[dev-dependencies.doc-comment]
version = "0.3.4"

[build-dependencies]