From d85c652d8f5e3c01fec988cc77f2e199dc2f3dce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gustav=20S=C3=B6rn=C3=A4s?= Date: Sat, 3 Apr 2021 11:09:06 +0200 Subject: clap -> structopt I tried to translate the current clap-code into structopt and save any modifications for later, /but/, some things would've taken too much energy. But I've forgotten what those were. --- mumctl/Cargo.toml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'mumctl/Cargo.toml') diff --git a/mumctl/Cargo.toml b/mumctl/Cargo.toml index 02326c8..5a12d8f 100644 --- a/mumctl/Cargo.toml +++ b/mumctl/Cargo.toml @@ -11,11 +11,12 @@ repository = "https://github.com/sornas/mum" license = "MIT" [dependencies] -mumlib = { version = "0.3", path = "../mumlib" } +mumlib = { path = "../mumlib" } -clap = { version = "2.33", features = ["yaml"] } -colored = "2.0" +anyhow = "1" +bincode = "1" +colored = "2" log = "0.4" -bincode = "1.3.2" +structopt = "0.3" #cursive = "0.15" -- cgit v1.2.1 From b555f2105f7e2e8c402e995205e214d46ab24686 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gustav=20S=C3=B6rn=C3=A4s?= Date: Tue, 6 Apr 2021 20:40:24 +0200 Subject: specify version dependency --- mumctl/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mumctl/Cargo.toml') diff --git a/mumctl/Cargo.toml b/mumctl/Cargo.toml index 5a12d8f..0da7fa4 100644 --- a/mumctl/Cargo.toml +++ b/mumctl/Cargo.toml @@ -11,7 +11,7 @@ repository = "https://github.com/sornas/mum" license = "MIT" [dependencies] -mumlib = { path = "../mumlib" } +mumlib = { version = "0.3", path = "../mumlib" } anyhow = "1" bincode = "1" -- cgit v1.2.1 From fc85f34301a99e404433650f3f4cd4d4ed24ec3b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gustav=20S=C3=B6rn=C3=A4s?= Date: Tue, 6 Apr 2021 20:40:44 +0200 Subject: remove anyhow --- mumctl/Cargo.toml | 1 - 1 file changed, 1 deletion(-) (limited to 'mumctl/Cargo.toml') diff --git a/mumctl/Cargo.toml b/mumctl/Cargo.toml index 0da7fa4..621b1d0 100644 --- a/mumctl/Cargo.toml +++ b/mumctl/Cargo.toml @@ -13,7 +13,6 @@ license = "MIT" [dependencies] mumlib = { version = "0.3", path = "../mumlib" } -anyhow = "1" bincode = "1" colored = "2" log = "0.4" -- cgit v1.2.1