cursive_image/lib.rs
1#![cfg_attr(docsrs, feature(doc_cfg))]
2#![warn(missing_docs)]
3#![doc = include_str!(concat!("../", std::env!("CARGO_PKG_README")))]
4// See: https://stackoverflow.com/a/61417700
5// See: https://github.com/rust-lang/cargo/pull/11645#issuecomment-1536905941
6
7mod image;
8mod image_view;
9mod kitty;
10mod sizing;
11mod state;
12mod vec2f;
13mod view;
14
15#[allow(unused_imports)]
16pub use {image::*, image_view::*, sizing::*};