-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
aa9e59c
commit 6e315e5
Showing
1 changed file
with
19 additions
and
0 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# Miden mock | ||
|
||
Utilities to help test Miden programs. | ||
|
||
This crate contains builder and mock functions to create objects for testing. A | ||
mock chain which allows the simulation of a rollup in-memory. And some precompute | ||
values to speed up testing. | ||
|
||
## Features | ||
|
||
| name | description | | ||
| ------------ | ----------------------------------------------------------------------------------------------------------------- | | ||
| `std` | Allows usage of Rust's `std`, for `no-std` compile with `--no-default-features`. | | ||
| `serde` | Enable `serde` based seralization of most objects. This feature allows saving the mock chains state to a file. | | ||
| `executable` | Enables the creation of `mock` executable, used to save mock data to a file, which can later on be used by tests. | | ||
|
||
## License | ||
|
||
This project is [MIT licensed](../LICENSE). |