[package] name = "rust_airport_supplier" version = "1.4.2" authors = ["Lucas Greuloch (greluc) "] description = "Rust-AirportSupplier downloads airport data from OurAirports and decodes the information." keywords = ["airport", "ouraiports", "flightsimulator", "flightsimulation", "aviation-data"] categories = ["data-structures", "game-development", "aerospace"] homepage = "https://gitlab.com/flightsimtools/r-fst/r-as" repository = "https://gitlab.com/flightsimtools/r-fst/r-as" license = "MIT" readme = "README.md" edition = "2021" exclude = [ ".gitlab/*", "config/*", "data/*", "res/*", ".gitlab-ci.yml", ] [dependencies] csv = "1.3.0" serde = { version = "1.0.204", features = ["derive"] } reqwest = { version = "0.12.5", features = ["blocking"] } thiserror = "1.0.61" [dev-dependencies] tempfile = "3.10.1" [lib] crate-type = ["dylib"] [profile.release] opt-level = 3 lto = true incremental = true codegen-units = 1 strip = "symbols"