[package]
edition = "2024"
name = "aprs-decode"
version = "0.1.0"
build = false
exclude = [
"memory/",
"CLAUDE.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Robust APRS packet parsing — text (APRS-IS) and binary (AX.25) input"
readme = "README.md"
keywords = [
"aprs",
"ax25",
"amateur-radio",
"packet",
"ham-radio",
]
categories = [
"network-programming",
"parser-implementations",
]
license = "MIT OR Apache-2.0"
license-file = "LICENSE-MIT"
repository = "https://github.com/Deatojef/aprs-decode"
[features]
default = []
serde = ["dep:serde"]
[lib]
name = "aprs_decode"
path = "src/lib.rs"
[[example]]
name = "decode"
path = "examples/decode.rs"
[[test]]
name = "fuzz_no_panic"
path = "tests/fuzz_no_panic.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[dependencies.serde]
version = "1"
features = ["derive"]
optional = true
[dependencies.thiserror]
version = "2"
[dev-dependencies.approx]
version = "0.5"