-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #10 from cpunkzzz/enable-miden
Enable miden
- Loading branch information
Showing
5 changed files
with
327 additions
and
176 deletions.
There are no files selected for viewing
Submodule miden
updated
from f23336 to 3f47eb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,13 @@ | ||
use std::collections::HashMap; | ||
|
||
fn main() { | ||
risc0_build::embed_methods(); | ||
let options_map = HashMap::from([( | ||
"methods-guest", | ||
risc0_build::GuestOptions { | ||
// change to 16 to run miden fully (will increase compile time) | ||
code_limit: 12, | ||
features: vec![], | ||
}, | ||
)]); | ||
risc0_build::embed_methods_with_options(options_map); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.