cursive-image 0.0.6

Image view for the Cursive TUI library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![cfg_attr(docsrs, feature(doc_cfg))]
#![warn(missing_docs)]
#![doc = include_str!(concat!("../", std::env!("CARGO_PKG_README")))]
// See: https://stackoverflow.com/a/61417700
// See: https://github.com/rust-lang/cargo/pull/11645#issuecomment-1536905941

mod image;
mod image_view;
mod kitty;
mod sizing;
mod state;
mod vec2f;
mod view;

#[allow(unused_imports)]
pub use {image::*, image_view::*, sizing::*};