[package]
edition = "2024"
rust-version = "1.95.0"
name = "cc-lb-plugin-wire"
version = "0.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "cc-lb plugin wire format — handshake and shared types between cc-lb host and plugins."
readme = false
license = "Apache-2.0"
repository = "https://github.com/isac322/cc-lb"
resolver = "2"
[lib]
name = "cc_lb_plugin_wire"
crate-type = ["rlib"]
path = "src/lib.rs"
[[test]]
name = "canonical_hash_property"
path = "tests/canonical_hash_property.rs"
[[test]]
name = "fallback_policy"
path = "tests/fallback_policy.rs"
[[test]]
name = "hashmap_forbidden"
path = "tests/hashmap_forbidden.rs"
[[test]]
name = "v2_mirror"
path = "tests/v2_mirror.rs"
[[test]]
name = "v3_filter_roundtrip"
path = "tests/v3_filter_roundtrip.rs"
[dependencies.serde]
version = "1"
features = [
"alloc",
"derive",
]
default-features = false
[dependencies.serde_json]
version = "1"
features = ["alloc"]
default-features = false
[dependencies.sha2]
version = "0.11"
default-features = false
[dependencies.thiserror]
version = "2"
default-features = false
[dependencies.uuid]
version = "1"
features = ["serde"]
default-features = false
[dev-dependencies.proptest]
version = "1"