Created
March 15, 2015 23:27
-
-
Save daboross/e4bc66d4de4c2f38229e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ cargo new test-project | |
$ cd test-project | |
$ mkdir subdir | |
$ touch subdir/Cargo.toml | |
$ cargo build | |
failed to parse manifest at `/home/daboross/test-project/subdir/Cargo.toml` | |
Caused by: | |
No `package` or `project` section found. | |
$ rm -r subdir | |
$ mkdir -p subdir/Cargo.toml | |
$ cargo build | |
An unknown error occurred | |
To learn more, run the command again with --verbose. | |
$ cargo build --verbose | |
Is a directory (os error 21) | |
$ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment