1#![feature(try_blocks)]
2#![feature(new_range_api)]
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")]
8extern crate core;
9
10pub mod formats;
11pub mod helpers;
13pub mod program;