Cargo.toml (516B)
1 cargo-features = ["edition2021","strip"] 2 3 [package] 4 name = "xplane-datamonitor" 5 version = "0.1.0" 6 edition = "2021" 7 8 [lib] 9 crate-type = ["cdylib"] 10 11 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 12 13 [dependencies] 14 xplm = "0.3.1" 15 anyhow = "1.0.42" 16 thiserror = "1.0.26" 17 influxdb-client = "0.1.4" 18 tokio = { version = "1", default-features = false, features = ["rt-multi-thread"] } 19 20 [profile.release] 21 codegen-units = 1 22 opt-level = 'z' 23 lto = true 24 strip = true 25 panic = 'abort'