trdelnik-cli 0.5.0

Trdelník is Rust based testing framework providing several convenient developer tools for testing Solana programs written in Anchor.
Documentation
1
2
3
4
5
6
7
8
use anyhow::Error;
use fehler::throws;

#[throws]
#[tokio::main]
async fn main() {
    trdelnik_cli::start().await?
}