crosup 0.5.2

A simple CLI tool to quickly setup your development environment on Chomebook (ChromeOS) or any Linux Distribution.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#[derive(Clone, Default)]
pub struct InstallArgs {
    pub tools: Option<Vec<String>>,
    pub ask: bool,
    pub remote_is_present: bool,
    pub remote: Option<String>,
    pub port: Option<u16>,
    pub username: Option<String>,
    pub inventory: Option<String>,
}

#[derive(Clone, Default)]
pub struct SearchArgs {
    pub package: String,
    pub channel: String,
    pub max_results: u32,
}