//! Crate defining a library with a procedural macro and other
//! dependencies for building Solana program errors
#![deny(missing_docs)]#![cfg_attr(not(test),forbid(unsafe_code))]externcrateselfas spl_program_error;// Make these available downstream for the macro to work without
// additional imports
pubuse{
num_derive, num_traits, solana_program_error,spl_program_error_derive::{spl_program_error, IntoProgramError, ToStr},
thiserror,};