jiminy-core 0.17.0

Core systems layer for Jiminy: account layout, zero-copy IO, validation, PDA, sysvar access, math, time checks. Declarative macros for error codes, instruction dispatch, and account uniqueness. no_std, no_alloc, no proc macros, BPF-safe.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Compatibility modules for optional external crate integrations.
//!
//! Each sub-module is feature-gated and only compiled when the
//! corresponding feature is enabled.

/// Integration with [`solana-zero-copy`] unaligned primitive types.
///
/// Enabled via the `solana-zero-copy` feature flag.
#[cfg(feature = "solana-zero-copy")]
pub mod szc;