1#![deny(missing_debug_implementations, missing_copy_implementations)]
2#![warn(missing_docs, rustdoc::missing_crate_level_docs)]
3#![doc = include_str!("../readme.md")]
4#![doc(html_logo_url = "https://raw.githubusercontent.com/oovm/shape-rs/dev/projects/images/Trapezohedron.svg")]
5#![doc(html_favicon_url = "https://raw.githubusercontent.com/oovm/shape-rs/dev/projects/images/Trapezohedron.svg")]
6
7extern crate core;
8
9mod c3;
10mod errors;
11mod traits;
12
13pub use crate::{
14 c3::{C3Class, C3ClassMember, InheritGraph},
15 errors::{LinearizeError, LinearizeResult},
16 traits::C3Object,
17};