From 0140b65c5350375ac33057abb8f87ea4edca8b1b Mon Sep 17 00:00:00 2001 From: Tim Crawford Date: Tue, 14 Jul 2020 09:05:55 -0600 Subject: [PATCH] scripts: Remove cargo-xbuild from deps --- scripts/deps.sh | 6 ------ 1 file changed, 6 deletions(-) diff --git a/scripts/deps.sh b/scripts/deps.sh index cc68c99..1344aef 100755 --- a/scripts/deps.sh +++ b/scripts/deps.sh @@ -67,11 +67,5 @@ rustup toolchain install "$(cat rust-toolchain)" msg "Installing source for pinned Rust toolchain" rustup component add --toolchain "$(cat rust-toolchain)" rust-src -if ! which cargo-xbuild > /dev/null -then - msg "Installing cargo-xbuild" - cargo +nightly install cargo-xbuild --version=0.5.29 -fi - msg "\x1B[32mSuccessfully installed dependencies" echo "Ready to run ./scripts/build.sh [model]" >&2