diff --git a/Cargo.toml b/Cargo.toml index 0b079d3c..3fc64f0f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,11 +13,16 @@ cargo-dist-version = "0.19.1" # CI backends to support ci = "github" # The installers to generate for each app -installers = ["shell", "powershell", "npm", "homebrew", "msi"] +installers = ["shell", "powershell", "npm", "homebrew"] # A GitHub repo to push Homebrew formulas to tap = "aiken-lang/homebrew-tap" # Target platforms to build apps for (Rust target-triple syntax) -targets = ["aarch64-apple-darwin", "x86_64-apple-darwin", "x86_64-unknown-linux-gnu"] +targets = [ + "aarch64-apple-darwin", + "x86_64-apple-darwin", + "x86_64-unknown-linux-gnu", + "x86_64-pc-windows-msvc", +] # The archive format to use for windows builds (defaults .zip) windows-archive = ".tar.gz" # The archive format to use for non-windows builds (defaults .tar.xz)