mirror of
https://github.com/logos-blockchain/lez-programs.git
synced 2026-07-04 05:59:33 +00:00
13 lines
455 B
Rust
13 lines
455 B
Rust
//! Host-side embedding of the stablecoin RISC Zero guest ELF.
|
|
//!
|
|
//! Re-exports the constants produced by `build.rs` via `risc0_build::embed_methods` —
|
|
//! `STABLECOIN_ELF`, `STABLECOIN_PATH`, and `STABLECOIN_ID` — used by host code to
|
|
//! load and identify the guest binary.
|
|
|
|
#![allow(
|
|
missing_docs,
|
|
reason = "constants below are generated by risc0_build::embed_methods at build time"
|
|
)]
|
|
|
|
include!(concat!(env!("OUT_DIR"), "/methods.rs"));
|