[package] name = "rust_flightweather" version = "2.0.1" authors = ["Lucas Greuloch (greluc) "] description = "Decodes METAR and TAF" keywords = ["metar", "taf", "flightsimulator", "flightsimulation", "flightweather"] categories = ["data-structures", "game-development"] homepage = "https://gitlab.com/flightsimtools/r-fst/r-fw" repository = "https://gitlab.com/flightsimtools/r-fst/r-fw" license = "MIT" readme = "README.md" edition = "2021" exclude = [ ".gitlab/*", "config/*", "data/*", "res/*", "test/*", "docs/*", ".gitlab-ci.yml", ] [dependencies] pest = "2.7.11" pest_derive = "2.7.11" [dev-dependencies] reqwest = { version = "0.12.7", features = ["blocking"] } [lib] crate-type = ["dylib"] [profile.release] opt-level = 3 lto = true incremental = true codegen-units = 1 strip = "symbols"