Skip to content

Commit ee7bf82

Browse files
committed
Remove excluded path dependency
It doesn't work (see rust-lang/cargo#4089), so wasn't giving us any benefits
1 parent 318e5df commit ee7bf82

2 files changed

Lines changed: 2 additions & 5 deletions

File tree

tests/fixtures/workspace/Cargo.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,3 @@ members = [
44
"two",
55
"explicit/*"
66
]
7-
8-
exclude = ["not_a_member"]

tests/fixtures/workspace/one/Cargo.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,5 @@ path = "../dummy.rs"
77

88
[dependencies]
99
libc = "0.2.28"
10-
three = { path = "../implicit/three"}
11-
bar = { git = "https://github.com/foo/bar.git", version = "0.10" }
12-
not_a_member = { path = "not_a_member", version = "0.10" }
10+
three = { path = "../implicit/three", version = "0.0.1"}
11+
lazy_static = { git = "https://github.com/rust-lang-nursery/lazy-static.rs.git", tag = "v0.2"}

0 commit comments

Comments
 (0)