Skip to content

Commit

Permalink
Fix mock-std as well
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnTitor committed Jul 29, 2020
1 parent 769ac7c commit 7c77fed
Show file tree
Hide file tree
Showing 21 changed files with 12 additions and 33 deletions.
10 changes: 5 additions & 5 deletions tests/testsuite/mock-std/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[workspace]
members = [
"src/liballoc",
"src/libcore",
"src/libproc_macro",
"src/libstd",
"src/libtest",
"library/alloc",
"library/core",
"library/proc_macro",
"library/std",
"library/test",
]
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,5 @@ version = "0.1.0"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
edition = "2018"

[lib]
path = "lib.rs"

[dependencies]
registry-dep-using-core = { version = "*", features = ['mockbuild'] }
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,3 @@ name = "compiler_builtins"
version = "0.1.0"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
edition = "2018"

[lib]
path = "lib.rs"
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,3 @@ name = "core"
version = "0.1.0"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
edition = "2018"

[lib]
path = "lib.rs"
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,3 @@ name = "panic_unwind"
version = "0.1.0"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
edition = "2018"

[lib]
path = "lib.rs"
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,3 @@ name = "proc_macro"
version = "0.1.0"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
edition = "2018"

[lib]
path = "lib.rs"
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ edition = "2018"
path = "lib.rs"

[dependencies]
alloc = { path = "../../liballoc" }
alloc = { path = "../alloc" }
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ edition = "2018"
path = "lib.rs"

[dependencies]
core = { path = "../../libcore" }
core = { path = "../core" }
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ edition = "2018"
path = "lib.rs"

[dependencies]
std = { path = "../../libstd" }
std = { path = "../std" }
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,6 @@ version = "0.1.0"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
edition = "2018"

[lib]
path = "lib.rs"

[dependencies]
registry-dep-using-alloc = { version = "*", features = ['mockbuild'] }

Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,11 @@ version = "0.1.0"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
edition = "2018"

[lib]
path = "lib.rs"

[dependencies]
proc_macro = { path = "../libproc_macro" }
std = { path = "../libstd" }
panic_unwind = { path = "../libpanic_unwind" }
compiler_builtins = { path = "../libcompiler_builtins" }
proc_macro = { path = "../proc_macro" }
std = { path = "../std" }
panic_unwind = { path = "../panic_unwind" }
compiler_builtins = { path = "../compiler_builtins" }
registry-dep-using-std = { version = "*", features = ['mockbuild'] }

[features]
Expand Down
File renamed without changes.

0 comments on commit 7c77fed

Please sign in to comment.