Merge pull request #1914 from king6cong/master

fix member path
This commit is contained in:
Alex Crichton 2017-02-21 13:16:07 -06:00 committed by GitHub
commit d8d2de4aa9
1 changed files with 2 additions and 2 deletions

View File

@ -256,13 +256,13 @@ configuration necessary, are:
```toml
# crates/crate1/Cargo.toml
[package]
workspace = "../root"
workspace = "../../root"
```
```toml
# crates/crate2/Cargo.toml
[package]
workspace = "../root"
workspace = "../../root"
```
Projects like the compiler will likely need exhaustively explicit configuration.