From 7717c4ab2c0bbbe2ad9f9be6f2e56dd08379de75 Mon Sep 17 00:00:00 2001 From: Duncan Dean Date: Mon, 2 Sep 2024 21:10:26 +0200 Subject: [PATCH] chore: disable windows release support for now --- Cargo.toml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 9b0dc49..3a09a95 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -57,9 +57,9 @@ cargo-dist-version = "0.21.1" # CI backends to support ci = "github" # The installers to generate for each app -installers = ["shell", "powershell"] +installers = ["shell"] # Target platforms to build apps for (Rust target-triple syntax) -targets = ["aarch64-apple-darwin", "x86_64-apple-darwin", "x86_64-unknown-linux-gnu", "x86_64-pc-windows-msvc"] +targets = ["aarch64-apple-darwin", "x86_64-apple-darwin", "x86_64-unknown-linux-gnu"] # Which actions to run on pull requests pr-run-mode = "plan" # Whether to install an updater program @@ -77,10 +77,6 @@ protobuf = { version = "27.3_1" } [workspace.metadata.dist.dependencies.apt] protobuf-compiler = { version = "3.21.12-8.2build1" } -# Release dependencies for Windows -[workspace.metadata.dist.dependencies.chocolatey] -protoc = { version = "27.3.0" } - # Use more recent version of ubuntu [workspace.metadata.dist.github-custom-runners] x86_64-unknown-linux-gnu = "ubuntu-24.04"