We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd5b980 commit be82984Copy full SHA for be82984
src/cargo/ops/cargo_new.rs
@@ -590,6 +590,7 @@ fn global_config(config: &Config) -> CargoResult<CargoNewConfig> {
590
let vcs = match vcs.as_ref().map(|p| (&p.val[..], &p.definition)) {
591
Some(("git", _)) => Some(VersionControl::Git),
592
Some(("hg", _)) => Some(VersionControl::Hg),
593
+ Some(("pijul", _)) => Some(VersionControl::Pijul),
594
Some(("none", _)) => Some(VersionControl::NoVcs),
595
Some((s, p)) => {
596
return Err(internal(format!("invalid configuration for key \
0 commit comments