1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
// Copyright (c) 2022 Xu Shaohua <shaohua@biofan.org>. All rights reserved.
// Use of this source is governed by Lesser General Public License that can be found
// in the LICENSE file.

//! Jiao is a cross platform 2D graphics library.
//!
//! - [Documentation](https://docs.rs/jiao)
//! - [Release notes](https://github.com/RustVis/jiao/releases)
//!
//! ## Usage
//! Add this to `Cargo.toml`:
//! ```toml
//! [dependencies]
//! jiao = "0.4"
//! ```

#![deny(
    warnings,
    clippy::all,
    clippy::cargo,
    clippy::nursery,
    clippy::pedantic
)]
#![allow(dead_code)]
#![allow(clippy::module_name_repetitions)]

pub(crate) mod base;
pub mod codec;
pub mod core;
pub mod effects;
pub mod encode;
pub mod gpu;
pub mod image;
pub mod pdf;
pub mod shaders;
pub mod sksl;
pub mod svg;
pub mod text;
pub mod utils;