Skip to content

Commit

Permalink
Upgrade windows deps to 0.59 (#118)
Browse files Browse the repository at this point in the history
Regenerated code using windows-bindgen=0.59.
BOOLEAN type is removed by windows-bindgen, and there is no bool
conversion anymore. Removed BOOLEAN type from mssf-pal.
Code gen uses the windows-bindgen --package mode, where no hacks are
needed to manipulate namespaces anymore.
  • Loading branch information
youyuanwu authored Jan 8, 2025
1 parent a8b1e24 commit 991886c
Show file tree
Hide file tree
Showing 32 changed files with 40,289 additions and 38,038 deletions.
166 changes: 97 additions & 69 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,9 @@ tracing-subscriber = { version = "0.3", default-features = false, features = ["
tokio-util = "0.7"
ctrlc = { version = "3.0", features = ["termination"] }
tokio = { version = "1", features = ["full"] }
windows = {version = "0.58", features = ["implement"]}
windows-core = "0.58"
windows = {version = "0.59", features = ["implement"]}
windows-core = "0.59"
windows-bindgen = "0.59"
trait-variant = "0.1"
serde = "*"
serde_derive = "*"
Expand Down
9 changes: 8 additions & 1 deletion crates/libs/com/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,11 @@ version = "0.0.17"

[features]
default = ["bundled_libs"]
bundled_libs = []
bundled_libs = []
Foundation = []
# generated features
ServiceFabric = ["Foundation"]
ServiceFabric_FabricClient = ["ServiceFabric"]
ServiceFabric_FabricCommon = ["ServiceFabric"]
ServiceFabric_FabricRuntime = ["ServiceFabric"]
ServiceFabric_FabricTypes = ["ServiceFabric"]
Loading

0 comments on commit 991886c

Please sign in to comment.