Add the derive proc macro

This commit is contained in:
Mihai Dinculescu
2022-10-10 19:33:49 +01:00
parent 2f845f1c8f
commit 9b7e3b97db
29 changed files with 951 additions and 96 deletions

View File

@@ -6,6 +6,10 @@ edition = "2021"
description = "SimConnect SDK for Rust"
license = "MIT"
[features]
default = []
derive = ["simconnect-sdk-derive"]
[build-dependencies]
bindgen = "0.60"
@@ -13,4 +17,4 @@ bindgen = "0.60"
num_enum = "0.5"
tracing = "0.1"
thiserror = "1.0"
simconnect-sdk-derive = { path = "../simconnect-sdk-derive" }
simconnect-sdk-derive = { path = "../simconnect-sdk-derive", optional = true }