Example Project (git repo):
Cargo.toml:
[package]
authors = ["Philipp Oppermann <[email protected]>"]
name = "issue"
version = "0.1.0"
[dependencies.foo]
path = "libs/foo"
[workspace]
libs/foo/Cargo.toml:
[package]
authors = ["Philipp Oppermann <[email protected]>"]
name = "foo"
version = "0.1.0"
src/lib.rs and libs/foo/src/lib.rs are both empty.
When I run cargo build, there is no output rlib in target/debug. It works if I remove the workspace from the Cargo.toml.
cargo 0.16.0-nightly (ddb5c32 2016-12-16)
rustc 1.15.0-nightly (8f02c429a 2016-12-15)