senax-encoder 0.2.2

A fast, compact, and schema-evolution-friendly binary serialization library for Rust.
Documentation
[dependencies.ahash]
optional = true
version = "0.8"

[dependencies.bigdecimal]
optional = true
version = "0.4"

[dependencies.bytes]
version = "1.5"

[dependencies.chrono]
optional = true
version = "0.4"

[dependencies.fxhash]
optional = true
version = "0.2"

[dependencies.indexmap]
optional = true
version = "2.2"

[dependencies.rust_decimal]
optional = true
version = "1.35"

[dependencies.senax-encoder-derive]
version = "0.2.1"

[dependencies.serde_json]
optional = true
version = "1.0"

[dependencies.smol_str]
optional = true
version = "0.3"

[dependencies.thiserror]
version = "1.0"

[dependencies.ulid]
optional = true
version = "1.1"

[dependencies.uuid]
features = ["v4"]
optional = true
version = "1.8"

[features]
ahash = ["dep:ahash"]
bigdecimal = ["dep:bigdecimal"]
chrono = ["dep:chrono"]
fxhash = ["dep:fxhash"]
indexmap = ["dep:indexmap"]
raw_value = ["serde_json", "serde_json/raw_value"]
rust_decimal = ["dep:rust_decimal"]
serde_json = ["dep:serde_json"]
smol_str = ["dep:smol_str"]
ulid = ["dep:ulid"]
uuid = ["dep:uuid"]

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

[package]
authors = ["yossyX"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["encoding"]
description = "A fast, compact, and schema-evolution-friendly binary serialization library for Rust."
edition = "2021"
keywords = ["senax", "encode", "serialize", "serializer", "binary"]
license = "MIT OR Apache-2.0"
name = "senax-encoder"
readme = "README.md"
repository = "https://github.com/yossyX/senax-encoder"
version = "0.2.2"

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

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

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

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

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

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

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

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

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