1#![cfg_attr(feature = "__doc_cfg", feature(doc_cfg))]
2#![cfg_attr(feature = "__doc_cfg", feature(doc_auto_cfg))]
3#![cfg_attr(feature = "extern-types", feature(extern_types))]
4
5#[macro_use]
6extern crate cfg_if;
7extern crate libwebp_sys2_01;
8
9pub use crate::decode::*;
10#[cfg(feature = "demux")]
11pub use crate::demux::*;
12pub use crate::encode::*;
13#[cfg(feature = "mux")]
14pub use crate::mux::*;
15#[cfg(any(feature = "mux", feature = "demux"))]
16pub use crate::mux_types::*;
17pub use crate::types::*;
18
19mod decode;
20#[cfg(feature = "demux")]
21mod demux;
22mod encode;
23#[cfg(feature = "mux")]
24mod mux;
25#[cfg(any(feature = "mux", feature = "demux"))]
26mod mux_types;
27mod types;
28
29#[cfg(not(feature = "std"))]
30compile_error!("`std` feature is currently required");
31
32#[allow(unused)]
33fn ensure_rust_1_85() {
34 let _ = 0_u32.midpoint(2);
35}