[package]
edition = "2021"
rust-version = "1.80"
name = "libaprs-engine"
version = "0.4.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Protocol-first APRS engine core primitives"
readme = "README.md"
keywords = [
"aprs",
"packet",
"radio",
"parser",
"protocol",
]
categories = [
"parser-implementations",
"encoding",
]
license = "MIT"
repository = "https://github.com/elodiejmirza/libaprs-engine"
[features]
alloc = []
default = ["std"]
serde = ["dep:serde"]
std = ["alloc"]
[lib]
name = "libaprs_engine"
path = "src/lib.rs"
[[example]]
name = "parse_packet"
path = "examples/parse_packet.rs"
[[example]]
name = "process_file"
path = "examples/process_file.rs"
[[test]]
name = "api_compat"
path = "tests/api_compat.rs"
[[test]]
name = "codec"
path = "tests/codec.rs"
[[test]]
name = "conformance"
path = "tests/conformance.rs"
[[test]]
name = "engine"
path = "tests/engine.rs"
[[test]]
name = "serde"
path = "tests/serde.rs"
[[bench]]
name = "parser_throughput"
path = "benches/parser_throughput.rs"
harness = false
[dependencies.serde]
version = "1"
features = ["derive"]
optional = true