Skip to content

Commit c4fb58c

Browse files
committed
ci: fix windows build
* Microsoft vcpkg is broken: microsoft/vcpkg#43565 * This change might not be needed or useful Signed-off-by: Richard Zak <[email protected]>
1 parent 9456dee commit c4fb58c

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

crates/server/Cargo.toml

+7-2
Original file line numberDiff line numberDiff line change
@@ -84,9 +84,14 @@ tracing-subscriber = { workspace = true }
8484
[target.'cfg(target_os = "windows")'.build-dependencies]
8585
vcpkg = { workspace = true }
8686

87+
[package.metadata.vcpkg]
88+
git = "https://github.com/microsoft/vcpkg"
89+
rev = "ddcee8f"
90+
dependencies = ["libmagic"]
91+
8792
[package.metadata.vcpkg.target]
88-
aarch64-pc-windows-msvc = { triplet = "arm64-windows", dependencies = ["libmagic"] }
89-
x86_64-pc-windows-msvc = { triplet = "x64-windows-static", dependencies = ["libmagic"] }
93+
aarch64-pc-windows-msvc = { triplet = "arm64-windows-release", dependencies = ["libmagic"] }
94+
x86_64-pc-windows-msvc = { triplet = "x64-windows-static-release", dependencies = ["libmagic"] }
9095

9196
[package.metadata.docs.rs]
9297
all-features = true

0 commit comments

Comments
 (0)