Skip to content

Instantly share code, notes, and snippets.

@daboross
Created March 15, 2015 23:27
Show Gist options
  • Save daboross/e4bc66d4de4c2f38229e to your computer and use it in GitHub Desktop.
Save daboross/e4bc66d4de4c2f38229e to your computer and use it in GitHub Desktop.
$ 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