[package]
edition = "2024"
rust-version = "1.85"
name = "aatp"
version = "0.1.0"
authors = ["MerlijnW70"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A tiny, zero-dependency, memory-safe binary transport for autonomous agents: framing with CRC32C integrity, zero-copy decode, a stateful session machine, dictionary compression, and a reversible obfuscation layer. #![forbid(unsafe_code)], no_std."
documentation = "https://docs.rs/aatp"
readme = "README.md"
keywords = [
"protocol",
"serialization",
"no_std",
"binary",
"agents",
]
categories = [
"encoding",
"no-std",
"network-programming",
]
license = "MIT"
repository = "https://github.com/MerlijnW70/aatp"
[lib]
name = "aatp"
path = "src/lib.rs"
[[test]]
name = "fuzz"
path = "tests/fuzz.rs"
[dependencies]