Skip to content

Commit

Permalink
fix ~ add missing winapi module feature ("fileapi")
Browse files Browse the repository at this point in the history
- fixes "unresolved import `winapi::um::fileapi`" errors for windows builds
  • Loading branch information
rivy committed Jul 19, 2019
1 parent 6755eaa commit bcb89a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ optional = true

[target.'cfg(target_os="windows")'.dependencies.winapi]
version = "0.3.4"
features = ["errhandlingapi", "consoleapi", "processenv", "handleapi"]
features = ["consoleapi", "errhandlingapi", "fileapi", "handleapi", "processenv"]

[dev-dependencies]
doc-comment = "0.3"
Expand Down

0 comments on commit bcb89a2

Please sign in to comment.