bonsai-rest-api-mock 0.6.1

An HTTP REST API server to mock the Bonsai-alpha prover interface.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
# Mock of the Bonsai REST API

An HTTP REST API server to mock the Bonsai-alpha prover interface.
The service provides execution only, no proving. It can be configured to run on a given port.

## Example Usage

```rust
#[tokio::main]
async fn main() {
    let _ = bonsai_local_api_mock::serve("8081".to_string()).await;
}
```