spl_token_metadata_example/
lib.rs

1//! Crate defining an example program for storing SPL token metadata
2
3#![allow(clippy::arithmetic_side_effects)]
4#![deny(missing_docs)]
5#![cfg_attr(not(test), forbid(unsafe_code))]
6
7pub mod processor;
8
9#[cfg(not(feature = "no-entrypoint"))]
10mod entrypoint;