[package] name = "rust_flightplan" version = "1.1.1" authors = ["Lucas Greuloch (greluc) "] description = "Loads a flight plan from SimBrief and decodes it." keywords = ["flightplan", "simbrief", "flightsimulator", "flightsimulation"] categories = ["data-structures", "game-development"] homepage = "https://gitlab.com/flightsimtools/r-fst/r-fp" repository = "https://gitlab.com/flightsimtools/r-fst/r-fp" license = "MIT" readme = "README.md" edition = "2021" exclude = [ ".gitlab/*", "config/*", "data/*", "res/*", ".gitlab-ci.yml", ] [dependencies] regex = "1.11.0" serde = { version = "1.0.210", features = ["derive"] } serde_json = "1.0.128" chrono = { version = "0.4.38", features = ["serde"] } reqwest = { version = "0.12.8" } [dev-dependencies] tokio = { version = "1.40.0" } tokio-macros = "2.4.0" [profile.release] opt-level = 3 lto = true incremental = true codegen-units = 1 strip = "symbols"