radix-native-sdk 1.3.1

A library for developing native blueprints, from the Radix DLT project.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![allow(clippy::module_inception)]
#![cfg_attr(not(feature = "std"), no_std)]

#[cfg(not(any(feature = "std", feature = "alloc")))]
compile_error!("Either feature `std` or `alloc` must be enabled for this crate.");
#[cfg(all(feature = "std", feature = "alloc"))]
compile_error!("Feature `std` and `alloc` can't be enabled at the same time.");

pub mod account;
pub mod component;
pub mod consensus_manager;
pub mod modules;
pub mod resource;
pub mod runtime;