Files
simconnect-sdk-rs/simconnect-sdk/Cargo.toml
dependabot[bot] 9f569d49fa Bump bindgen from 0.61.0 to 0.62.0
Bumps [bindgen](https://github.com/rust-lang/rust-bindgen) from 0.61.0 to 0.62.0.
- [Release notes](https://github.com/rust-lang/rust-bindgen/releases)
- [Changelog](https://github.com/rust-lang/rust-bindgen/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rust-lang/rust-bindgen/compare/v0.61.0...v0.62.0)

---
updated-dependencies:
- dependency-name: bindgen
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-11-19 19:37:28 +00:00

31 lines
956 B
TOML

[package]
name = "simconnect-sdk"
version = "0.2.1"
edition = "2021"
license = "MIT"
authors = ["Mihai Dinculescu <mihai.dinculescu@outlook.com>"]
description = "SimConnect SDK. An opinionated SimConnect Client that encapsulates the C API fully and optimizes for developer experience."
keywords = ["simconnect", "MSFS-2020", "simulation", "aerospace"]
categories = ["aerospace", "simulation", "aerospace::simulation", "games"]
readme = "README.md"
repository = "https://github.com/mihai-dinculescu/simconnect-sdk-rs"
include = ["src/**", "ffi/**/*", "build.rs", "LICENSE", "README.md"]
[features]
default = []
derive = ["simconnect-sdk-derive"]
[build-dependencies]
bindgen = "0.62"
[dependencies]
num_enum = "0.5"
tracing = "0.1"
thiserror = "1.0"
simconnect-sdk-derive = { version = "=0.2.1", path = "../simconnect-sdk-derive", optional = true }
[package.metadata.docs.rs]
features = ["derive"]
default-target = "x86_64-pc-windows-msvc"
targets = []