noxu 3.2.0

Embedded transactional key-value database engine: ACID transactions, log-structured B+tree, crash recovery, optional master-replica replication, XA, and typed persistence.
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"
name = "noxu"
version = "3.2.0"
authors = ["Greg Burd <greg@burd.me>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Embedded transactional key-value database engine: ACID transactions, log-structured B+tree, crash recovery, optional master-replica replication, XA, and typed persistence."
homepage = "https://codeberg.org/gregburd/noxu"
readme = "README.md"
keywords = [
    "database",
    "embedded",
    "transactional",
    "btree",
    "wal",
]
categories = [
    "database-implementations",
    "data-structures",
    "concurrency",
]
license = "Apache-2.0 OR MIT"
repository = "https://codeberg.org/gregburd/noxu"
resolver = "2"

[package.metadata.docs.rs]
all-features = true
targets = ["x86_64-unknown-linux-gnu"]

[features]
collections = ["dep:noxu-collections"]
default = [
    "collections",
    "persist",
    "xa",
]
observability = [
    "dep:noxu-observe",
    "noxu-db/observability",
]
persist = [
    "dep:noxu-persist",
    "dep:noxu-persist-derive",
]
replication = ["dep:noxu-rep"]
replication-tls-native = [
    "replication",
    "noxu-rep/tls-native",
]
replication-tls-rustls = [
    "replication",
    "noxu-rep/tls-rustls",
]
xa = ["dep:noxu-xa"]

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

[[test]]
name = "smoke"
path = "tests/smoke.rs"

[dependencies.noxu-bind]
version = "3.2.0"

[dependencies.noxu-collections]
version = "3.2.0"
optional = true

[dependencies.noxu-db]
version = "3.2.0"

[dependencies.noxu-observe]
version = "3.2.0"
optional = true

[dependencies.noxu-persist]
version = "3.2.0"
optional = true

[dependencies.noxu-persist-derive]
version = "3.2.0"
optional = true

[dependencies.noxu-rep]
version = "3.2.0"
optional = true

[dependencies.noxu-xa]
version = "3.2.0"
optional = true

[dev-dependencies.tempfile]
version = "3"

[lints.clippy]
large_stack_frames = "warn"
large_types_passed_by_value = "warn"
or_fun_call = "warn"
redundant_clone = "warn"
undocumented_unsafe_blocks = "warn"

[lints.rust]
unsafe_op_in_unsafe_fn = "deny"