Skip to content

Commit

Permalink
Unbreak windows build of buck2_client_ctx
Browse files Browse the repository at this point in the history
Summary: There is code in buck2_client_ctx that only works if winapi's "std" feature is enabled. But this is not a default feature, and is not enabled by the "everything" feature.

Reviewed By: zertosh

Differential Revision: D61760500

fbshipit-source-id: 2f51e2d81c4d6373deafc841562ad4e4e9bc3c48
  • Loading branch information
David Tolnay authored and facebook-github-bot committed Aug 24, 2024
1 parent 9104936 commit 05ca98e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion shim/third-party/rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ walkdir = "2.3.2"
which = "4.3.0"
whoami = "1.5.1"
windows_x86_64_msvc = "=0.48.0" # our fixup only works if we are on precisely 0.48.0
winapi = { version = "0.3", features = ["everything"] }
winapi = { version = "0.3", features = ["everything", "std"] }
x509-parser = { version = "0.14.0", features = ["verify"] }
xattr = "0.2.2"
zip = "0.5"
Expand Down

0 comments on commit 05ca98e

Please sign in to comment.