miden-client 0.16.0-alpha.1

Client library that facilitates interaction with the Miden network
Documentation
1
2
3
4
5
6
7
8
9
10
#[rustfmt::skip]
#[allow(dead_code)]
mod inner {
    #[cfg(feature = "std")]
    include!(concat!(env!("OUT_DIR"), "/remote_prover_std.rs"));

    #[cfg(not(feature = "std"))]
    include!(concat!(env!("OUT_DIR"), "/remote_prover_nostd.rs"));
}
pub use inner::remote_prover::*;