From d03a1ff2dc55044f4ac919c2673608d65791efbe Mon Sep 17 00:00:00 2001 From: gnzlbg Date: Tue, 9 Jul 2019 11:16:47 +0200 Subject: [PATCH] Use cargo-xbuild for building the documentation --- ci/dox.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/dox.sh b/ci/dox.sh index 40b7dae4..823c8113 100644 --- a/ci/dox.sh +++ b/ci/dox.sh @@ -19,7 +19,7 @@ if ! rustc --version | grep -E "nightly" ; then fi rustup component add rust-src -cargo +nightly install xargo -Z install-upgrade +cargo +nightly install cargo-xbuild -Z install-upgrade # List all targets that do currently build successfully: # shellcheck disable=SC1003 @@ -50,7 +50,7 @@ while read -r target; do # If cargo doc fails, then try xargo: if ! cargo doc --target "${target}" \ --no-default-features --features extra_traits ; then - xargo doc --target "${target}" \ + cargo xdoc --target "${target}" \ --no-default-features --features extra_traits fi