[package]
edition = "2024"
rust-version = "1.87.0"
name = "squitter"
version = "0.1.1"
authors = ["hz2 <dev.json2@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "no_std, no_alloc parser and encoder for 1090ES/DF17 (ADS-B extended squitter) messages"
homepage = "https://github.com/hz2/squitter"
documentation = "https://docs.rs/squitter"
readme = "README.md"
keywords = [
"adsb",
"mode-s",
"aviation",
"no-std",
"aircraft",
]
categories = [
"parser-implementations",
"no-std",
"embedded",
"encoding",
]
license = "MIT"
repository = "https://github.com/hz2/squitter"
resolver = "2"
[lib]
name = "squitter"
path = "src/lib.rs"
[[test]]
name = "real_world_corpus"
path = "tests/real_world_corpus.rs"
[[bench]]
name = "codec"
path = "benches/codec.rs"
harness = false
[dev-dependencies.criterion]
version = "0.7"
features = ["html_reports"]
[dev-dependencies.proptest]
version = "1"
[lints.clippy.all]
level = "deny"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(kani)"]