diff --git a/doc/roadmap.org b/doc/roadmap.org index 5d3c3cb..159ff0e 100644 --- a/doc/roadmap.org +++ b/doc/roadmap.org @@ -1,9 +1,9 @@ #+title: Roadmap * 0.2.0 (maybe) -- [-] Links in categories? -- [ ] Fix category with no links -- [ ] Refactor +- [X] Links in categories? +- [X] Fix category with no links +- [-] Refactor * 0.1.2 - [X] Implement Quiet flag * 0.1.1 diff --git a/src/git.rs b/src/git.rs index e9d3305..cfb237c 100644 --- a/src/git.rs +++ b/src/git.rs @@ -54,8 +54,6 @@ pub enum RepoFlags { /// Represents the config.toml file. /// /// For diagrams of the underlying architecture, consult ARCHITECHTURE.md -/// -/// #[derive(Eq, PartialEq, Debug, Serialize, Deserialize)] pub struct Config { /// map of all categories diff --git a/src/main.rs b/src/main.rs index 1f22a44..e830ccd 100644 --- a/src/main.rs +++ b/src/main.rs @@ -116,7 +116,7 @@ fn main() { mod config { use crate::*; use git::RepoFlags::{Clone, Push}; - use git::{Category, GitRepo, Link}; + use git::{Category, GitRepo}; use relative_path::RelativePath; use std::collections::HashMap; use std::env::current_dir;