keetanetwork-bindings 0.2.1

Shared, target-agnostic projections and error mapping for KeetaNet binding crates
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Shared, target-agnostic logic for the KeetaNet binding crates.
//!
//! Each FFI boundary repeats the same input parsing, account-algorithm
//! mapping, and core-error reduction.

#![cfg_attr(not(feature = "std"), no_std)]

extern crate alloc;

pub mod account;
pub mod error;
pub mod parse;
pub mod permissions;
pub mod time;
pub mod x509;

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