zune_qoi/lib.rs
1/*
2 * Copyright (c) 2023.
3 *
4 * This software is free software; You can redistribute it or modify it under terms of the MIT, Apache License or Zlib license
5 */
6//! Decoding and encoding Quite Ok Image format
7//!
8//! [Format Specification](https://qoiformat.org/qoi-specification.pdf)
9//!
10//!
11//! # Features
12//! - Decoding and encoding
13//! -`no_std`
14//! - Fast
15//! - Fuzz tested
16//!
17//! ## `no_std`
18//! You can use `no_std` with alloc feature to compile for `no_std` endpoints
19
20#![cfg_attr(not(feature = "std"), no_std)]
21#![macro_use]
22extern crate alloc;
23extern crate core;
24
25pub use decoder::*;
26pub use encoder::*;
27pub use errors::*;
28pub use zune_core;
29mod constants;
30mod decoder;
31mod encoder;
32mod errors;