From: Ian Jackson Date: Sun, 14 Feb 2021 23:05:20 +0000 (+0000) Subject: Drop unused argparse dependency from daemon X-Git-Tag: otter-0.4.0~477 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=c83a79622a788f9c44524dfcc42d388e844609ef;p=otter.git Drop unused argparse dependency from daemon Signed-off-by: Ian Jackson --- diff --git a/Cargo.lock.example b/Cargo.lock.example index 3790590a..da078fca 100644 --- a/Cargo.lock.example +++ b/Cargo.lock.example @@ -1649,7 +1649,6 @@ dependencies = [ name = "otter-daemon" version = "0.0.1" dependencies = [ - "argparse", "arrayvec", "boolinator", "chrono", diff --git a/Cargo.toml b/Cargo.toml index faea52d6..8137135a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,8 +18,8 @@ members = ["wasm", "daemon", "wdriver"] otter-base = { path = "base" } anyhow = "1" - argparse = "0.2" + backtrace = "0.3" boolinator = "2" chrono = "0.4" diff --git a/daemon/Cargo.toml b/daemon/Cargo.toml index bbe66602..3996d61a 100644 --- a/daemon/Cargo.toml +++ b/daemon/Cargo.toml @@ -18,7 +18,6 @@ path = "main.rs" otter = { path = ".." } otter-base = { path = "../base" } -argparse = "0.2" arrayvec = "0.5" boolinator = "2" chrono = "0.4"