clone_spl_pod/lib.rs
1//! Crate containing `Pod` types and `bytemuck` utilities used in SPL
2
3pub mod bytemuck;
4pub mod error;
5pub mod option;
6pub mod optional_keys;
7pub mod primitives;
8pub mod slice;
9
10// Export current sdk types for downstream users building with a different sdk
11// version
12pub use {
13 clone_solana_decode_error, clone_solana_msg, clone_solana_program_error,
14 clone_solana_program_option, clone_solana_pubkey,
15};