Skip to content

Commit 22bd52d

Browse files
authored
Auto merge of #3123 - wimh:platform_versions, r=alexcrichton
Don't download dependencies from other platforms Having a Cargo.toml which looks like this: [package] name = "a" version = "0.0.1" authors = [] [target.'cfg(unix)'.dependencies] foo = "0.1.0" [target.'cfg(windows)'.dependencies] foo = "0.2.0" This would still download foo version 0.2.0 on unix. I think there is no need to do that, but please correct me if I'm wrong. This was triggered by [this](http://stackoverflow.com/questions/39709542/why-does-the-last-platform-specific-dependency-take-precedence-in-cargo) stackoverflow question, but that situation is more complicated, as the version is the same, just the features are different. This PR will not solve that bug. If you want me to include that too, I would have to debug a bit more first....
2 parents 26dcd3e + 0a4fbbf commit 22bd52d

File tree

2 files changed

+33
-1
lines changed

2 files changed

+33
-1
lines changed

src/cargo/ops/cargo_rustc/context.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -454,7 +454,7 @@ impl<'a, 'cfg> Context<'a, 'cfg> {
454454
let deps = self.resolve.deps(id);
455455
let mut ret = try!(deps.filter(|dep| {
456456
unit.pkg.dependencies().iter().filter(|d| {
457-
d.name() == dep.name()
457+
d.name() == dep.name() && d.version_req().matches(dep.version())
458458
}).any(|d| {
459459
// If this target is a build command, then we only want build
460460
// dependencies, otherwise we want everything *other than* build

tests/cfg.rs

+32
Original file line numberDiff line numberDiff line change
@@ -228,6 +228,38 @@ fn works_through_the_registry() {
228228
"));
229229
}
230230

231+
#[test]
232+
fn ignore_version_from_other_platform() {
233+
let this_family = if cfg!(unix) {"unix"} else {"windows"};
234+
let other_family = if cfg!(unix) {"windows"} else {"unix"};
235+
Package::new("foo", "0.1.0").publish();
236+
Package::new("foo", "0.2.0").publish();
237+
238+
let p = project("a")
239+
.file("Cargo.toml", &format!(r#"
240+
[package]
241+
name = "a"
242+
version = "0.0.1"
243+
authors = []
244+
245+
[target.'cfg({})'.dependencies]
246+
foo = "0.1.0"
247+
248+
[target.'cfg({})'.dependencies]
249+
foo = "0.2.0"
250+
"#, this_family, other_family))
251+
.file("src/lib.rs", "extern crate foo;");
252+
253+
assert_that(p.cargo_process("build"),
254+
execs().with_status(0).with_stderr("\
255+
[UPDATING] registry [..]
256+
[DOWNLOADING] [..]
257+
[COMPILING] foo v0.1.0
258+
[COMPILING] a v0.0.1 ([..])
259+
[FINISHED] debug [unoptimized + debuginfo] target(s) in [..]
260+
"));
261+
}
262+
231263
#[test]
232264
fn bad_target_spec() {
233265
let p = project("a")

0 commit comments

Comments
 (0)