Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions cargo-rbmt/src/docs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ use xshell::Shell;
pub fn run(sh: &Shell, packages: &[String]) -> Result<(), Box<dyn std::error::Error>> {
check_toolchain(sh, Toolchain::Stable)?;

let mut cmd = quiet_cmd!(sh, "cargo doc --all-features");
let mut cmd = quiet_cmd!(sh, "cargo doc --all-features --no-deps");

// Add package filters if specified.
for package in packages {
Expand All @@ -30,7 +30,7 @@ pub fn run(sh: &Shell, packages: &[String]) -> Result<(), Box<dyn std::error::Er
pub fn run_docsrs(sh: &Shell, packages: &[String]) -> Result<(), Box<dyn std::error::Error>> {
check_toolchain(sh, Toolchain::Nightly)?;

let mut cmd = quiet_cmd!(sh, "cargo doc --all-features");
let mut cmd = quiet_cmd!(sh, "cargo doc --all-features --no-deps");

// Add package filters if specified.
for package in packages {
Expand Down