New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cargo guide #21
Cargo guide #21
Conversation
| * Source code goes in the `src` directory. | ||
| * External tests go in the `tests` directory. | ||
| * The default executable file is `src/main.rs`. | ||
| * The defualt library file is `src/lib.rs`. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
default
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(Also, worth mentioning that binaries can be placed in src/bin/<name>.rs?)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
I don't know how to override dependencies with
cargo config, so I didn't write that out yet.