1#![no_std]
2#![feature(return_position_impl_trait_in_trait)]
3#![deny(missing_debug_implementations, missing_copy_implementations)]
4#![warn(missing_docs, rustdoc::missing_crate_level_docs)]
5#![doc = include_str!("../readme.md")]
6#![doc(html_logo_url = "https://raw.githubusercontent.com/oovm/shape-rs/dev/projects/images/Trapezohedron.svg")]
7#![doc(html_favicon_url = "https://raw.githubusercontent.com/oovm/shape-rs/dev/projects/images/Trapezohedron.svg")]
8
9extern crate alloc;
10
11pub use crate::errors::{HtmlError, Result};
12pub use crate::traits::{Element, HtmlElement};
13
14mod errors;
15mod values;
16mod traits;
17