[package]
edition = "2021"
name = "efb"
version = "0.6.0"
authors = ["Joe Pearson"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Electronic Flight Bag library to plan and conduct a flight."
homepage = "https://github.com/AeronauticalMaps/libefb"
readme = "README.md"
keywords = [
"aviation",
"EFB",
]
categories = [
"aerospace",
"science::geo",
]
license = "Apache-2.0"
repository = "https://github.com/AeronauticalMaps/libefb"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
geojson = ["dep:geojson"]
handbook = []
serde = [
"dep:serde",
"geo/serde",
"rstar/serde",
]
[lib]
name = "efb"
path = "src/lib.rs"
[[example]]
name = "flightplanner"
path = "examples/flightplanner.rs"
[[example]]
name = "readme"
path = "examples/readme.rs"
[[test]]
name = "aircraft_mb_test"
path = "tests/aircraft_mb_test.rs"
[[test]]
name = "altering_factor_test"
path = "tests/altering_factor_test.rs"
[[test]]
name = "route_decoding_test"
path = "tests/route_decoding_test.rs"
[[test]]
name = "runway_analysis_test"
path = "tests/runway_analysis_test.rs"
[dependencies.arinc424]
version = "0.4.0"
[dependencies.chrono]
version = "0.4.42"
[dependencies.geo]
version = "0.32.0"
[dependencies.geojson]
version = "0.24.2"
optional = true
[dependencies.rstar]
version = "0.12.2"
[dependencies.serde]
version = "1.0.219"
features = [
"derive",
"rc",
]
optional = true
[dependencies.time]
version = "0.3.36"
features = ["wasm-bindgen"]
[dependencies.world_magnetic_model]
version = "0.2.0"