[package]
edition = "2024"
rust-version = "1.88"
name = "cmr-core"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core protocol/parser/router primitives for Competitive Message Routing (CMR)."
homepage = "https://github.com/turtle261/competitive-message-router"
documentation = "https://docs.rs/cmr-core"
readme = false
keywords = [
"cmr",
"routing",
"protocol",
"networking",
]
categories = [
"network-programming",
"parser-implementations",
]
license = "Apache-2.0"
repository = "https://github.com/turtle261/competitive-message-router"
[lib]
name = "cmr_core"
path = "src/lib.rs"
[[test]]
name = "agi2_conformance"
path = "tests/agi2_conformance.rs"
[[test]]
name = "core_tests"
path = "tests/core_tests.rs"
[dependencies.hex]
version = "0.4.3"
[dependencies.hkdf]
version = "0.12.4"
[dependencies.hmac]
version = "0.12.1"
[dependencies.num-bigint]
version = "0.4.6"
features = ["serde"]
[dependencies.num-traits]
version = "0.2.19"
[dependencies.rand]
version = "0.9.2"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.145"
[dependencies.sha2]
version = "0.10.9"
[dependencies.subtle]
version = "2.6.1"
[dependencies.thiserror]
version = "2.0.17"
[dependencies.time]
version = "0.3.44"
[dependencies.url]
version = "2.5.7"
[dev-dependencies.proptest]
version = "1.9.0"