11 lines
156 B
Bash
11 lines
156 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# Source the parameters from params.sh
|
||
|
source ./params.sh
|
||
|
|
||
|
# Build
|
||
|
cargo build --release
|
||
|
|
||
|
# Run the Rust executable
|
||
|
cargo run prove_and_verify
|