From 0caa5fb8e4e084248e6c4e7d3314854eb7bc4e7f Mon Sep 17 00:00:00 2001 From: Jordan Gong Date: Wed, 9 Sep 2020 21:36:11 +0800 Subject: Publish my crate --- my_crate/src/lib.rs | 61 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 my_crate/src/lib.rs (limited to 'my_crate/src/lib.rs') diff --git a/my_crate/src/lib.rs b/my_crate/src/lib.rs new file mode 100644 index 0000000..a6f0751 --- /dev/null +++ b/my_crate/src/lib.rs @@ -0,0 +1,61 @@ +////! # My crate +////! +////! `my_crate` is a collection of utilities to make performing certain +////! calculations more convenient. + +///// Adds one to number given. +///// +///// # Examples +///// +///// ``` +///// let arg = 5; +///// let answer = my_crate::add_one(arg); +///// +///// assert_eq!(6, answer); +///// ``` +//pub fn add_one(x: i32) -> i32 { +// x + 1 +//} + +//! # Art +//! +//! A library for modeling artistic concepts. + +pub use self::kinds::PrimaryColor; +pub use self::kinds::SecondaryColor; +pub use self::utils::mix; + +pub mod kinds { + /// The primary colors according to the RYB color model. + pub enum PrimaryColor { + Red, + Yellow, + Blue, + } + + /// The secondary colors according to the RYB color model. + pub enum SecondaryColor { + Orange, + Green, + Purple, + } +} + +pub mod utils { + use crate::kinds::*; + + /// Combines two primary colors in equal amounts to create + /// a secondary color. + pub fn mix(c1: PrimaryColor, c2: PrimaryColor) -> SecondaryColor { + // --snip-- + SecondaryColor::Orange + } +} + +#[cfg(test)] +mod tests { + #[test] + fn it_works() { + assert_eq!(2 + 2, 4); + } +} -- cgit v1.2.3