Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add private git server support #353

Merged
merged 7 commits into from
Jul 16, 2021
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Avoid bumping MSRV
  • Loading branch information
Jake-Shadle committed Jul 16, 2021
commit 444f2dd9a5932ee82041cc36a020b6d4d85d6b7c
2 changes: 1 addition & 1 deletion src/cargo-deny/common.rs
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ fn get_metadata(opts: MetadataOptions) -> Result<krates::cm::Metadata, anyhow::E
mdc.manifest_path(opts.manifest_path);

if opts.offline {
mdc.other_options(["--offline".to_owned()]);
mdc.other_options(std::iter::once("--offline".to_owned()));
}

let mdc: krates::cm::MetadataCommand = mdc.into();
Expand Down