Cargo.toml: winapi: List used features (#31417)
`winapi` hides every module behind a feature flag, see here: https://github.com/retep998/winapi-rs#why-am-i-getting-errors-about-unresolved-imports `install` was working by accident as for each package, requested feature set is a superset of all features requested by all packages in the workspace, and `console` used to list features that `install` needs. But after a change in `console` we had build breakages.
This commit is contained in:
parent
53e9e8b8d7
commit
b790c129e0
|
@ -39,7 +39,7 @@ tempfile = { workspace = true }
|
||||||
url = { workspace = true }
|
url = { workspace = true }
|
||||||
|
|
||||||
[target."cfg(windows)".dependencies]
|
[target."cfg(windows)".dependencies]
|
||||||
winapi = { workspace = true }
|
winapi = { workspace = true, features = ["minwindef", "winuser"] }
|
||||||
winreg = { workspace = true }
|
winreg = { workspace = true }
|
||||||
|
|
||||||
[package.metadata.docs.rs]
|
[package.metadata.docs.rs]
|
||||||
|
|
Loading…
Reference in New Issue