cargo-rx 0.3.0

A simple fuzzy finder that allows you to search and run examples from the command line. It comes with the `rx` command.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use serde::{Deserialize, Serialize};

/// Config which contains *replay* details on the *most recent* run example.
#[derive(Deserialize, Serialize, Default)]
pub struct ReplayConfig {
    /// Represents the *last run* example
    pub last_run: LastRun,
}

/// The details on the *last run* example.
#[derive(Deserialize, Serialize, Default)]
pub struct LastRun {
    /// Example *name*
    pub name: String,

    /// Example *arguments* passed in via command line
    pub arguments: Vec<String>,
}