chore: fixed up code, roadmap for bump
Signed-off-by: Christina Sørensen <christina@cafkafk.com>
This commit is contained in:
parent
a4e3527973
commit
c36000e7a0
3 changed files with 4 additions and 6 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue