If you make a project and add the following to the Cargo.toml: ``` [workspace] members = [""] [dependencies] x = { path = "x" } ``` You get the error message: ``` $ RUST_BACKTRACE=1 cargo test -q Caused by: No such file or directory (os error 2) ```