[package]
edition = "2021"
rust-version = "1.85"
name = "verit"
version = "0.2.0"
authors = ["Exavian Labs Team"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Exavian Veritate — zero-copy, self-describing, schema-evolvable binary serialization, safe on untrusted bytes, no unsafe, byte-identical across independent implementations."
documentation = "https://docs.rs/verit"
readme = "README.md"
keywords = [
"serialization",
"zero-copy",
"binary",
"schema",
"self-describing",
]
categories = [
"encoding",
"data-structures",
"parser-implementations",
]
license = "Apache-2.0"
repository = "https://github.com/exavianlabs/veritate"
[package.metadata.docs.rs]
all-features = true
[features]
derive = ["dep:verit-derive"]
[lib]
name = "verit"
path = "src/lib.rs"
[[example]]
name = "bench"
path = "examples/bench/main.rs"
[[example]]
name = "demo"
path = "examples/demo.rs"
[[example]]
name = "eventstore"
path = "examples/eventstore.rs"
required-features = ["derive"]
[[example]]
name = "filebench"
path = "examples/filebench.rs"
[[example]]
name = "files"
path = "examples/files.rs"
[[example]]
name = "gen"
path = "examples/gen.rs"
[[example]]
name = "interop"
path = "examples/interop.rs"
[[example]]
name = "packed"
path = "examples/packed.rs"
[[test]]
name = "codegen"
path = "tests/codegen.rs"
[[test]]
name = "container"
path = "tests/container.rs"
[[test]]
name = "defaults"
path = "tests/defaults.rs"
[[test]]
name = "dense"
path = "tests/dense.rs"
[[test]]
name = "derive"
path = "tests/derive.rs"
[[test]]
name = "emitters"
path = "tests/emitters.rs"
[[test]]
name = "evolution"
path = "tests/evolution.rs"
[[test]]
name = "file"
path = "tests/file.rs"
[[test]]
name = "golden_files"
path = "tests/golden_files.rs"
[[test]]
name = "golden_vectors"
path = "tests/golden_vectors.rs"
[[test]]
name = "maps"
path = "tests/maps.rs"
[[test]]
name = "packed"
path = "tests/packed.rs"
[[test]]
name = "robustness"
path = "tests/robustness.rs"
[[test]]
name = "roundtrip"
path = "tests/roundtrip.rs"
[[test]]
name = "self_describing"
path = "tests/self_describing.rs"
[[test]]
name = "traversal_budget"
path = "tests/traversal_budget.rs"
[[test]]
name = "unions"
path = "tests/unions.rs"
[[test]]
name = "zero_alloc"
path = "tests/zero_alloc.rs"
[[test]]
name = "zero_copy"
path = "tests/zero_copy.rs"
[dependencies.verit-core]
version = "0.2.0"
[dependencies.verit-derive]
version = "0.2.0"
optional = true
[dev-dependencies.capnp]
version = "0.20"
[dev-dependencies.flatbuffers]
version = "=24.3.25"
[dev-dependencies.prost]
version = "0.13"
[dev-dependencies.serde]
version = "1"
features = ["derive"]
[dev-dependencies.serde_json]
version = "1"
[lints.rust]
missing_docs = "allow"
unsafe_op_in_unsafe_fn = "warn"