yggdrasil_viewer/
lib.rs

1#![feature(return_position_impl_trait_in_trait)]
2#![deny(missing_debug_implementations, missing_copy_implementations)]
3#![warn(missing_docs, rustdoc::missing_crate_level_docs)]
4#![doc = include_str!("../readme.md")]
5#![doc(html_logo_url = "https://raw.githubusercontent.com/oovm/shape-rs/dev/projects/images/Trapezohedron.svg")]
6#![doc(html_favicon_url = "https://raw.githubusercontent.com/oovm/shape-rs/dev/projects/images/Trapezohedron.svg")]
7
8pub use crate::errors::{Error, Result};
9
10mod errors;
11
12mod plot_svg;
13pub use crate::plot_svg::{SvgPlotter, SvgTree};