Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix!: generated types from DECLARE_HANDLE macro are marked as opaque, non-copy, and non-default #280

Open
wants to merge 8 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/github-dependency-review.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ jobs:
# AND combinations are currently bugged (https://github.com/actions/dependency-review-action/issues/263):
# * [email protected] License: Apache-2.0 AND MIT
# * [email protected] License: (MIT OR Apache-2.0) AND Unicode-DFS-2016
allow-dependencies-licenses: 'pkg:cargo/[email protected], pkg:cargo/[email protected], pkg:cargo/[email protected]'
# * [email protected] License: (Apache-2.0 OR MIT) AND BSD-3-Clause
allow-dependencies-licenses: 'pkg:cargo/[email protected], pkg:cargo/[email protected], pkg:cargo/[email protected], pkg:cargo/[email protected]'
comment-summary-in-pr: on-failure
# Explicit refs required for merge_group and push triggers:
# https://github.com/actions/dependency-review-action/issues/456
Expand Down
175 changes: 175 additions & 0 deletions Cargo.lock

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

2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ cc = "1.2.10"
cfg-if = "1.0.0"
clap = "4.5.9"
clap-cargo = "0.14.1"
grep = "0.2"
itertools = "0.13.0"
paste = "1.0.15"
pretty_assertions = "1.4.1"
Expand All @@ -56,6 +57,7 @@ syn = "2.0.87"
thiserror = "1.0.69"
tracing = "0.1.40"
tracing-subscriber = "0.3.18"
walkdir = "2"
windows = "0.58.0"

# The following workspace.metadata.wdk sections can be uncommented to configure the workspace for a specific WDK configuration (ex. for rust-analyzer to resolve things for a specific configuration)
Expand Down
2 changes: 2 additions & 0 deletions crates/wdk-build/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,14 @@ cargo_metadata.workspace = true
cfg-if.workspace = true
clap = { workspace = true, features = ["derive"] }
clap-cargo.workspace = true
grep.workspace = true
paste.workspace = true
rustversion.workspace = true
serde = { workspace = true, features = ["derive"] }
serde_json.workspace = true
thiserror.workspace = true
tracing.workspace = true
walkdir.workspace = true
windows = { workspace = true, features = [
"Win32_Foundation",
"Win32_System_Registry",
Expand Down
Loading