#![deny(
warnings,
clippy::all,
clippy::cargo,
clippy::nursery,
clippy::pedantic
)]
mod error;
pub mod paint_device;
pub mod painter;
pub mod painter_ref;
use jiao::platforms::Features;
pub use self::error::Error;
pub use self::paint_device::{ImagePaintDevice, PaintDevice, PdfPaintDevice, SvgPaintDevice};
pub use self::painter::Painter;
pub use self::painter::Path;
pub use self::painter_ref::PainterRef;
pub const FEATURES: &Features = &Features {
filter: false,
ssr: true,
input_event: true,
cursor: false,
};