silkroad 0.0.4

A full-featured registry server for Cargo.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use std::path::PathBuf;
use structopt::StructOpt;

#[derive(Debug, StructOpt)]
#[structopt(name = "exec")]
pub struct Execute {
    #[structopt(
        long = "toml",
        short = "f",
        help = "Set the TOML file path",
        value_name = "PATH",
        parse(try_from_str)
    )]
    toml: PathBuf,
}