In tower, we have a root-level examples/ directory in a workspace. This means that we also have to list [dev-dependencies] in the root-level Cargo.toml. This works just fine on the current stable (1.31.1), but fails to compile on 1.32 beta and nightly with:
error: failed to parse manifest at `/home/jon/dev/others/tower/Cargo.toml`
Caused by:
virtual manifests do not specify [dev-dependencies]
Seems like an unwanted regression from stable?
In
tower, we have a root-levelexamples/directory in a workspace. This means that we also have to list[dev-dependencies]in the root-levelCargo.toml. This works just fine on the current stable (1.31.1), but fails to compile on1.32 betaand nightly with:Seems like an unwanted regression from stable?