reifydb-codec 0.9.0

Unified encoding and decoding for all ReifyDB values, frames, rows, keys, and boundaries
Documentation
[package]
name = "reifydb-codec"
description = "Unified encoding and decoding for all ReifyDB values, frames, rows, keys, and boundaries"
version.workspace = true
edition.workspace = true
authors.workspace = true
license.workspace = true

[features]
default = ["json", "host"]
json = ["dep:serde_json"]
host = ["reifydb-value/host"]

[build-dependencies]
reifydb-build = { workspace = true }

[dependencies]
reifydb-value = { workspace = true }
num-bigint = { workspace = true }
num-traits = { workspace = true }
bigdecimal = { workspace = true }
uuid = { workspace = true }
postcard = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true, optional = true }
thiserror = { workspace = true }
tracing = { workspace = true }
xxhash-rust = { workspace = true }

[[test]]
name = "primitive"
path = "tests/primitive/mod.rs"

[[test]]
name = "frame"
path = "tests/frame/mod.rs"

[[test]]
name = "key"
path = "tests/key/mod.rs"

[[test]]
name = "row"
path = "tests/row/mod.rs"

[[test]]
name = "value"
path = "tests/value/mod.rs"

[[test]]
name = "json"
path = "tests/json/mod.rs"

[[test]]
name = "tag"
path = "tests/tag/mod.rs"