From 773824b752171e1c13cc3bcdbaaf8b98e60e2671 Mon Sep 17 00:00:00 2001 From: Alex Huszagh Date: Wed, 25 May 2022 08:26:22 -0500 Subject: [PATCH] Remove deb subcommand. cargo-deb is not installed in the pre-built images, but `cross deb` runs in docker rather than falling back to the host. Closes #717. --- CHANGELOG.md | 1 + src/cargo.rs | 2 -- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 68a9b7a5f..fb9c0a3fd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +- #718 - remove deb subcommand. - #714 - use host target directory when falling back to host cargo. - #713 - convert relative target directories to absolute paths. - #709 - Update Emscripten targets to `emcc` version 3.1.10 diff --git a/src/cargo.rs b/src/cargo.rs index 14e9585e6..b22d427f4 100644 --- a/src/cargo.rs +++ b/src/cargo.rs @@ -15,7 +15,6 @@ pub enum Subcommand { Rustc, Test, Bench, - Deb, Clippy, Metadata, } @@ -44,7 +43,6 @@ impl<'a> From<&'a str> for Subcommand { "rustc" => Subcommand::Rustc, "t" | "test" => Subcommand::Test, "bench" => Subcommand::Bench, - "deb" => Subcommand::Deb, "clippy" => Subcommand::Clippy, "metadata" => Subcommand::Metadata, _ => Subcommand::Other,