miden-stdlib-sys 0.13.0

Low-level Rust bindings for the Miden standard library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![no_std]
#![cfg_attr(all(target_family = "wasm", miden), feature(linkage))]
#![deny(warnings)]

extern crate alloc;

pub mod intrinsics;
mod stdlib;

pub use intrinsics::{
    Digest, Felt, Word, WordAligned, advice::emit_falcon_sig_to_stack, assert, assert_eq, assertz,
};
pub use stdlib::*;