upsft 0.0.1

A simple CLI tool to update multiple dependencies
1
2
3
4
5
6
7
8
9
10
11
12
13
/// Dependencies loaded from config
#[derive(Debug, Clone, PartialEq, Eq, Hash, serde::Deserialize)]
pub struct RawDependency {
    pub label: String,
    pub(crate) hint: String,
    pub(crate) update_command: String,
}

#[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub struct Dependency {
    pub hint: String,
    pub update_command: String,
}