graphics_style/
lib.rs

1#![deny(rustdoc::missing_crate_level_docs)]
2// #![deny(missing_docs)]
3#![deny(missing_debug_implementations)]
4#![doc = include_str!("../Readme.md")]
5#![doc(html_logo_url = "https://raw.githubusercontent.com/oovm/graphics-rs/dev/.github/metadata/logo.svg")]
6#![doc(html_favicon_url = "https://raw.githubusercontent.com/oovm/graphics-rs/dev/.github/metadata/logo.svg")]
7
8mod resolver;
9mod shapes;
10mod styles;
11mod traits;
12
13pub use resolver::*;
14pub use shapes::*;
15pub use styles::*;
16pub use traits::*;