Skip to content

Commit 787591c

Browse files
committed
Auto merge of #3338 - alexcrichton:correct-vers-flag, r=brson
Require `cargo install --vers` takes a semver version Historically Cargo accidentally took a semver version *requirement*, so let's start issuing warnings about how this is now legacy behavior. Closes #3321
2 parents 307a613 + d91c9b4 commit 787591c

File tree

2 files changed

+50
-4
lines changed

2 files changed

+50
-4
lines changed

src/cargo/ops/cargo_install.rs

+25-3
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ use std::io::prelude::*;
77
use std::io::SeekFrom;
88
use std::path::{Path, PathBuf};
99

10+
use semver::Version;
1011
use tempdir::TempDir;
1112
use toml;
1213

@@ -57,7 +58,7 @@ pub fn install(root: Option<&str>,
5758
let map = SourceConfigMap::new(config)?;
5859
let (pkg, source) = if source_id.is_git() {
5960
select_pkg(GitSource::new(source_id, config), source_id,
60-
krate, vers, &mut |git| git.read_packages())?
61+
krate, vers, config, &mut |git| git.read_packages())?
6162
} else if source_id.is_path() {
6263
let path = source_id.url().to_file_path().ok()
6364
.expect("path sources must have a valid path");
@@ -68,11 +69,11 @@ pub fn install(root: Option<&str>,
6869
specify an alternate source", path.display()))
6970
})?;
7071
select_pkg(PathSource::new(&path, source_id, config),
71-
source_id, krate, vers,
72+
source_id, krate, vers, config,
7273
&mut |path| path.read_packages())?
7374
} else {
7475
select_pkg(map.load(source_id)?,
75-
source_id, krate, vers,
76+
source_id, krate, vers, config,
7677
&mut |_| Err(human("must specify a crate to install from \
7778
crates.io, or use --path or --git to \
7879
specify alternate source")))?
@@ -251,13 +252,34 @@ fn select_pkg<'a, T>(mut source: T,
251252
source_id: &SourceId,
252253
name: Option<&str>,
253254
vers: Option<&str>,
255+
config: &Config,
254256
list_all: &mut FnMut(&mut T) -> CargoResult<Vec<Package>>)
255257
-> CargoResult<(Package, Box<Source + 'a>)>
256258
where T: Source + 'a
257259
{
258260
source.update()?;
259261
match name {
260262
Some(name) => {
263+
let vers = match vers {
264+
Some(v) => {
265+
match v.parse::<Version>() {
266+
Ok(v) => Some(format!("={}", v)),
267+
Err(_) => {
268+
let msg = format!("the `--vers` provided, `{}`, is \
269+
not a valid semver version\n\n\
270+
historically Cargo treated this \
271+
as a semver version requirement \
272+
accidentally\nand will continue \
273+
to do so, but this behavior \
274+
will be removed eventually", v);
275+
config.shell().warn(&msg)?;
276+
Some(v.to_string())
277+
}
278+
}
279+
}
280+
None => None,
281+
};
282+
let vers = vers.as_ref().map(|s| &**s);
261283
let dep = Dependency::parse_no_deprecated(name, vers, source_id)?;
262284
let deps = source.query(&dep)?;
263285
match deps.iter().map(|p| p.package_id()).max() {

tests/install.rs

+25-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ fn bad_version() {
8787
assert_that(cargo_process("install").arg("foo").arg("--vers=0.2.0"),
8888
execs().with_status(101).with_stderr("\
8989
[UPDATING] registry [..]
90-
[ERROR] could not find `foo` in `registry [..]` with version `0.2.0`
90+
[ERROR] could not find `foo` in `registry [..]` with version `=0.2.0`
9191
"));
9292
}
9393

@@ -826,3 +826,27 @@ fn use_path_workspace() {
826826
let lock2 = p.read_lockfile();
827827
assert!(lock == lock2, "different lockfiles");
828828
}
829+
830+
#[test]
831+
fn vers_precise() {
832+
pkg("foo", "0.1.1");
833+
pkg("foo", "0.1.2");
834+
835+
assert_that(cargo_process("install").arg("foo").arg("--vers").arg("0.1.1"),
836+
execs().with_status(0).with_stderr_contains("\
837+
[DOWNLOADING] foo v0.1.1 (registry [..])
838+
"));
839+
}
840+
841+
#[test]
842+
fn legacy_version_requirement() {
843+
pkg("foo", "0.1.1");
844+
845+
assert_that(cargo_process("install").arg("foo").arg("--vers").arg("0.1"),
846+
execs().with_status(0).with_stderr_contains("\
847+
warning: the `--vers` provided, `0.1`, is not a valid semver version
848+
849+
historically Cargo treated this as a semver version requirement accidentally
850+
and will continue to do so, but this behavior will be removed eventually
851+
"));
852+
}

0 commit comments

Comments
 (0)