lazin 1.0.3

Primarily a dotfiles manager
1
2
3
4
5
6
7
use std::collections::BTreeSet;

#[derive(Debug, PartialEq, Eq, PartialOrd, Ord)]
pub struct Workspace {
    pub name: String,
    pub modules: BTreeSet<String>,
}