31 lines
703 B
Rust
31 lines
703 B
Rust
#![forbid(rust_2018_idioms)]
|
|
#![deny(unsafe_code, unused_results, rustdoc::broken_intra_doc_links)]
|
|
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
|
|
pub mod window;
|
|
|
|
mod backend;
|
|
mod primitive;
|
|
mod settings;
|
|
mod text;
|
|
|
|
#[cfg(feature = "image")]
|
|
mod raster;
|
|
|
|
#[cfg(feature = "svg")]
|
|
mod vector;
|
|
|
|
#[cfg(feature = "geometry")]
|
|
pub mod geometry;
|
|
|
|
pub use iced_graphics as graphics;
|
|
pub use iced_graphics::core;
|
|
|
|
pub use backend::Backend;
|
|
pub use primitive::Primitive;
|
|
pub use settings::Settings;
|
|
|
|
/// A [`tiny-skia`] graphics renderer for [`iced`].
|
|
///
|
|
/// [`tiny-skia`]: https://github.com/RazrFalcon/tiny-skia
|
|
/// [`iced`]: https://github.com/iced-rs/iced
|
|
pub type Renderer = iced_graphics::Renderer<Backend>;
|