[package]
edition = "2024"
name = "noxu-bind"
version = "3.0.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Serialization bindings for Noxu DB"
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"
[lib]
name = "noxu_bind"
path = "src/lib.rs"
[[test]]
name = "prop_tests"
path = "tests/prop_tests.rs"
[[test]]
name = "tck_serial_binding"
path = "tests/tck_serial_binding.rs"
[[test]]
name = "tck_tuple_format"
path = "tests/tck_tuple_format.rs"
[[bench]]
name = "bind_bench"
path = "benches/bind_bench.rs"
harness = false
[dependencies.byteorder]
version = "1"
[dependencies.bytes]
version = "1"
[dependencies.noxu-db]
version = "3.0.2"
[dependencies.noxu-util]
version = "3.0.2"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.thiserror]
version = "2"
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]
[dev-dependencies.proptest]
version = "1"
[lints.clippy]
large_stack_frames = "warn"
large_types_passed_by_value = "warn"
or_fun_call = "warn"
redundant_clone = "warn"