1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Crate defining an interface for managing type-length-value entries in a slab
//! of bytes, to be used with Solana accounts.

#![allow(clippy::integer_arithmetic)]
#![deny(missing_docs)]
#![cfg_attr(not(test), forbid(unsafe_code))]

pub mod error;
pub mod length;
pub mod state;
pub mod variable_len_pack;

// Export current sdk types for downstream users building with a different sdk
// version
pub use solana_program;
// Expose derive macro on feature flag
#[cfg(feature = "derive")]
pub use spl_type_length_value_derive::SplBorshVariableLenPack;