//! Decode an AVIF file into an image and save it in another format.
//!
//! Reads the bundled AVIF, decodes it to a [`image::DynamicImage`] with [`avif::decode`], and saves it as a PNG in the
//! `assets/` directory.
//!
//! Run with:
//!
//! ```text
//! cargo run --example decode
//! ```
use Error;
const SOURCE: &str = concat!;