sol-chainsaw 0.0.2

Deserializing Solana accounts using their progam IDL
Documentation
pub mod de;
mod errors;
mod types;
mod utils;
pub use errors::*;
pub use types::*;
pub use utils::*;

#[cfg(any(feature = "json", feature = "bson"))]
mod api;
#[cfg(any(feature = "json", feature = "bson"))]
pub use api::ChainsawDeserializer;

#[cfg(feature = "json")]
pub mod json;
#[cfg(feature = "json")]
pub use json::JsonSerializationOpts;

#[cfg(feature = "bson")]
pub mod bson;

#[cfg(feature = "network")]
pub mod network;

pub mod idl {
    pub use solana_idl::*;
}

pub mod solana_sdk {
    pub use solana_sdk::*;
}