Skip to content

Commit

Permalink
Minimal reproduction of rust-lang/rust#40535
Browse files Browse the repository at this point in the history
  • Loading branch information
abonander committed Mar 16, 2017
0 parents commit 0cab7fe
Show file tree
Hide file tree
Showing 10 changed files with 59 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.idea/
target/
*.iml
18 changes: 18 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
[package]
name = "issue-40535"
version = "0.1.0"
authors = ["Austin Bonander <austin.bonander@gmail.com>"]

[dependencies]
direct = { path = "direct/" }
11 changes: 11 additions & 0 deletions direct/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions direct/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
[package]
name = "direct"
version = "0.1.0"
authors = ["Austin Bonander <austin.bonander@gmail.com>"]

[dependencies]
indirect = { path = "../indirect/" }
1 change: 1 addition & 0 deletions direct/src/lib.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
extern crate indirect;
4 changes: 4 additions & 0 deletions indirect/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions indirect/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[package]
name = "indirect"
version = "0.1.0"
authors = ["Austin Bonander <austin.bonander@gmail.com>"]

[dependencies]
Empty file added indirect/src/lib.rs
Empty file.
2 changes: 2 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
extern crate direct;
extern crate indirect;

0 comments on commit 0cab7fe

Please sign in to comment.