From 3e71b69729e09fd47bc12ef318cf7f2c9e127a6b Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Sun, 14 Feb 2021 23:10:30 +0000 Subject: [PATCH] Centralise boolinator Signed-off-by: Ian Jackson --- Cargo.lock.example | 2 -- Cargo.toml | 2 +- daemon/Cargo.toml | 1 - src/imports.rs | 1 + wdriver/Cargo.toml | 1 - 5 files changed, 2 insertions(+), 5 deletions(-) diff --git a/Cargo.lock.example b/Cargo.lock.example index 714bc2cc..f6af94d6 100644 --- a/Cargo.lock.example +++ b/Cargo.lock.example @@ -1649,7 +1649,6 @@ dependencies = [ name = "otter-daemon" version = "0.0.1" dependencies = [ - "boolinator", "chrono", "chrono-tz", "delegate", @@ -1713,7 +1712,6 @@ dependencies = [ name = "otter-webdriver-tests" version = "0.0.1" dependencies = [ - "boolinator", "env_logger", "fehler", "humantime", diff --git a/Cargo.toml b/Cargo.toml index 8137135a..5881ce30 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,9 +19,9 @@ otter-base = { path = "base" } anyhow = "1" argparse = "0.2" - backtrace = "0.3" boolinator = "2" + chrono = "0.4" chrono-tz = "0.5" delegate = "0.5" diff --git a/daemon/Cargo.toml b/daemon/Cargo.toml index 06b37ffc..e4d5379c 100644 --- a/daemon/Cargo.toml +++ b/daemon/Cargo.toml @@ -18,7 +18,6 @@ path = "main.rs" otter = { path = ".." } otter-base = { path = "../base" } -boolinator = "2" chrono = "0.4" chrono-tz = "0.5" delegate = "0.5" diff --git a/src/imports.rs b/src/imports.rs index d08f15f6..0ec2267f 100644 --- a/src/imports.rs +++ b/src/imports.rs @@ -5,3 +5,4 @@ pub use otter_base::imports::*; pub use anyhow; +pub use boolinator; diff --git a/wdriver/Cargo.toml b/wdriver/Cargo.toml index 491cb9b4..d8b0731e 100644 --- a/wdriver/Cargo.toml +++ b/wdriver/Cargo.toml @@ -13,7 +13,6 @@ edition = "2018" [dependencies] otter = { path = ".." } -boolinator = "2" env_logger = "0.8" humantime = "2" itertools = "0.10" -- 2.30.2