[package]
edition = "2024"
rust-version = "1.94"
name = "yo-doc"
version = "0.3.21"
authors = ["tamnd <tamnd87@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "YOJB, the binary JSON encoding that yo stores documents in"
homepage = "https://yo.tamnd.dev"
readme = "README.md"
keywords = [
"database",
"redis",
"embedded",
"key-value",
"storage",
]
categories = [
"database-implementations",
"data-structures",
"caching",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/tamnd/yo"
[lib]
name = "yo_doc"
path = "src/lib.rs"
[[test]]
name = "one_numbering_for_the_wire"
path = "tests/one_numbering_for_the_wire.rs"
[[bench]]
name = "yojb"
path = "benches/yojb.rs"
harness = false
[dependencies.yo-common]
version = "0.3.21"
[dependencies.yo-kv]
version = "0.3.21"
[dependencies.yo-shape]
version = "0.3.21"
[dependencies.yo-vector]
version = "0.3.21"
[dev-dependencies.criterion]
version = "0.8"
[dev-dependencies.yo-format]
version = "0.3.21"
[lints.clippy]
alloc_instead_of_core = "warn"
undocumented_unsafe_blocks = "deny"
[lints.rust]
missing_docs = "warn"
unsafe_op_in_unsafe_fn = "deny"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(loom)"]