From 26115bf7f8a78a92c78bb4d5b15e1c29d3b36b27 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Fri, 1 Sep 2017 18:34:56 +0200 Subject: [PATCH] Remove tagging functionality from imag-notes --- bin/domain/imag-notes/Cargo.toml | 1 - bin/domain/imag-notes/src/main.rs | 1 - bin/domain/imag-notes/src/ui.rs | 4 ---- 3 files changed, 6 deletions(-) diff --git a/bin/domain/imag-notes/Cargo.toml b/bin/domain/imag-notes/Cargo.toml index 475f36f5..180fe61a 100644 --- a/bin/domain/imag-notes/Cargo.toml +++ b/bin/domain/imag-notes/Cargo.toml @@ -23,5 +23,4 @@ libimagrt = { version = "0.4.0", path = "../../../lib/core/libimagrt" } libimagerror = { version = "0.4.0", path = "../../../lib/core/libimagerror" } libimagnotes = { version = "0.4.0", path = "../../../lib/domain/libimagnotes" } libimagentryedit = { version = "0.4.0", path = "../../../lib/entry/libimagentryedit" } -libimagentrytag = { version = "0.4.0", path = "../../../lib/entry/libimagentrytag" } libimagutil = { version = "0.4.0", path = "../../../lib/etc/libimagutil" } diff --git a/bin/domain/imag-notes/src/main.rs b/bin/domain/imag-notes/src/main.rs index 5d07f5b7..83c54fab 100644 --- a/bin/domain/imag-notes/src/main.rs +++ b/bin/domain/imag-notes/src/main.rs @@ -25,7 +25,6 @@ extern crate itertools; extern crate libimagnotes; extern crate libimagrt; extern crate libimagentryedit; -extern crate libimagentrytag; extern crate libimagerror; extern crate libimagutil; diff --git a/bin/domain/imag-notes/src/ui.rs b/bin/domain/imag-notes/src/ui.rs index 906c5524..f9ae7390 100644 --- a/bin/domain/imag-notes/src/ui.rs +++ b/bin/domain/imag-notes/src/ui.rs @@ -19,8 +19,6 @@ use clap::{Arg, App, SubCommand}; -use libimagentrytag::ui::tag_argument; - pub fn build_ui<'a>(app: App<'a, 'a>) -> App<'a, 'a> { app .subcommand(SubCommand::with_name("create") @@ -62,8 +60,6 @@ pub fn build_ui<'a>(app: App<'a, 'a>) -> App<'a, 'a> { .required(true) .help("Edit Note with this name") .value_name("NAME")) - - .arg(tag_argument()) ) .subcommand(SubCommand::with_name("list")