Files
simconnect-sdk-rs/simconnect-sdk/Cargo.toml
dependabot[bot] 165432874b Bump bindgen from 0.60.1 to 0.61.0
Bumps [bindgen](https://github.com/rust-lang/rust-bindgen) from 0.60.1 to 0.61.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.60.1...v0.61.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-10-19 11:04:03 +01:00

28 lines
619 B
TOML

[package]
name = "simconnect-sdk"
version = "0.1.0"
authors = ["Mihai Dinculescu <mihai.dinculescu@outlook.com>"]
edition = "2021"
description = "SimConnect SDK for Rust"
license = "MIT"
[features]
default = []
derive = ["simconnect-sdk-derive"]
[build-dependencies]
bindgen = "0.61"
[dependencies]
num_enum = "0.5"
tracing = "0.1"
thiserror = "1.0"
simconnect-sdk-derive = { path = "../simconnect-sdk-derive", optional = true }
# docs.rs-specific configuration
[package.metadata.docs.rs]
# document all features
all-features = true
# defines the configuration attribute `docsrs`
rustdoc-args = ["--cfg", "docsrs"]