[package]
edition = "2024"
name = "binex"
version = "0.5.2"
authors = ["Guillaume W. Bres <guillaume.bressaix@gmail.com>"]
build = false
exclude = ["data/*"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "BINEX encoder and decoder for real-time GNSS"
homepage = "https://github.com/nav-solutions"
readme = "README.md"
keywords = [
"geo",
"gps",
"galileo",
]
categories = [
"science",
"science::geo",
"parsing",
]
license = "MPL-2.0"
repository = "https://github.com/nav-solutions/binex"
[package.metadata]
msrv = "1.85"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docrs",
"--generate-link-to-definition",
]
[features]
default = ["flate2"]
[lib]
name = "binex"
path = "src/lib.rs"
[[test]]
name = "decoder"
path = "tests/decoder.rs"
[[test]]
name = "geo"
path = "tests/geo.rs"
[[test]]
name = "lib"
path = "tests/lib.rs"
[[test]]
name = "message"
path = "tests/message.rs"
[[test]]
name = "pvt"
path = "tests/pvt.rs"
[[bench]]
name = "decoding"
path = "benches/decoding.rs"
harness = false
[[bench]]
name = "encoding"
path = "benches/encoding.rs"
harness = false
[dependencies.flate2]
version = "1"
optional = true
[dependencies.hifitime]
version = "4.2"
features = [
"serde",
"std",
]
[dependencies.lazy_static]
version = "1"
[dependencies.log]
version = "0.4"
[dependencies.md-5]
version = "0.10"
[dependencies.thiserror]
version = "2"
[dev-dependencies.criterion]
version = "0.7.0"