rustbinary 0.1.1

A bounded Serde binary codec with adaptive frames, zero-allocation paths, schema evolution, and authenticated pipelines
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "rustbinary"
version = "0.1.1"
authors = [
    "blueokanna",
    "HyphenTeam",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A bounded Serde binary codec with adaptive frames, zero-allocation paths, schema evolution, and authenticated pipelines"
homepage = "https://github.com/blueokanna/RustBinary"
documentation = "https://docs.rs/rustbinary"
readme = "README.md"
keywords = [
    "binary",
    "serialization",
    "rust",
    "networking",
]
categories = [
    "encoding",
    "data-structures",
    "network-programming",
]
license = "Apache-2.0"
repository = "https://github.com/blueokanna/RustBinary"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
    "--cfg",
    "docsrs",
]

[features]
adaptive = [
    "bit-packing",
    "simd",
]
bit-packing = ["derive"]
cbor = ["dep:ciborium"]
compression = ["dep:zstd"]
default = [
    "derive",
    "fingerprint",
    "reflection",
    "static-size",
    "simd",
]
derive = ["dep:rustbinary-derive"]
encryption = [
    "dep:chacha20poly1305",
    "dep:getrandom",
    "dep:zeroize",
]
fingerprint = ["derive"]
parallel = []
reflection = ["derive"]
schema-evolution = []
simd = []
static-size = ["derive"]

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

[[example]]
name = "adaptive_zero_alloc"
path = "examples/adaptive_zero_alloc.rs"
required-features = ["adaptive"]

[[example]]
name = "complete"
path = "examples/complete.rs"
required-features = [
    "adaptive",
    "bit-packing",
    "cbor",
    "compression",
    "encryption",
    "fingerprint",
    "parallel",
    "reflection",
    "schema-evolution",
    "simd",
    "static-size",
]

[[example]]
name = "metadata"
path = "examples/metadata.rs"
required-features = [
    "bit-packing",
    "fingerprint",
    "reflection",
    "static-size",
]

[[example]]
name = "parallel_batch"
path = "examples/parallel_batch.rs"
required-features = ["parallel"]

[[example]]
name = "schema_evolution"
path = "examples/schema_evolution.rs"
required-features = ["schema-evolution"]

[[example]]
name = "secure_pipeline"
path = "examples/secure_pipeline.rs"
required-features = [
    "cbor",
    "compression",
    "encryption",
]

[[example]]
name = "zero_copy"
path = "examples/zero_copy.rs"

[dependencies.chacha20poly1305]
version = "0.11"
features = ["alloc"]
optional = true
default-features = false

[dependencies.ciborium]
version = "0.2.2"
optional = true

[dependencies.getrandom]
version = "0.4.3"
optional = true

[dependencies.rustbinary-derive]
version = "0.1.1"
optional = true

[dependencies.serde]
version = "1"
features = ["std"]
default-features = false

[dependencies.zeroize]
version = "1.9.0"
optional = true

[dependencies.zstd]
version = "0.13.3"
optional = true

[dev-dependencies.serde]
version = "1"
features = ["derive"]