vivid_protocol 1.5.0

Wire types, state models, and deterministic codecs for Vivid Protocol 1.5
Documentation
[package]
name = "vivid_protocol"
version = "1.5.0"
edition = "2024"
rust-version = "1.87.0"
license = "Apache-2.0"
description = "Wire types, state models, and deterministic codecs for Vivid Protocol 1.5"
readme = "README.md"
repository = "https://github.com/vivido-dev/vivid_protocol"
documentation = "https://docs.rs/vivid_protocol"
keywords = ["terminal", "graphics", "media", "protocol", "cbor"]
categories = ["encoding", "multimedia", "network-programming"]
include = [
    "Cargo.toml",
    "LICENSE",
    "README.md",
    "benches/**/*.rs",
    "src/**/*.rs",
    "vivid-protocol-1.5-*.md",
    "vivid-protocol-1.5-registry.toml",
    "vivid-protocol-1.1-to-1.5-migration.md",
]

[features]
default = ["native"]
native = ["dep:zstd", "dep:zstd-safe"]

[dependencies]
base64 = "0.23"
hmac = "0.13"
sha2 = "0.11"
subtle = "2.6"
zeroize = { version = "1.9", features = ["derive"] }
zstd = { version = "0.13", optional = true }
zstd-safe = { version = "7.2", optional = true }

[target.'cfg(target_arch = "wasm32")'.dependencies]
ruzstd = "0.9"

[[bench]]
name = "stage0"
harness = false

# The ยง7 model checker explores ~10^6 composed states and must stay a practical part of
# `cargo test`. opt-level 1 keeps debug assertions and cheap incremental builds while bringing
# the exploration back to seconds.
[profile.dev]
opt-level = 1