cargo_publishing 0.1.0

Project describing how to use comments to structure commenting for a library crate in Rust
Documentation
1
2
3
4
5
6
7
8
9
use cargo_publishing::mix;
use cargo_publishing::PrimaryColor;
// use cargo_publishing::kinds::PrimaryColor;
// use cargo_publishing::utils::mix;
fn main() {
    let red = PrimaryColor::Red;
    let yellow = PrimaryColor::Yellow;
    mix(red, yellow);
}