From: Ian Jackson Date: Wed, 13 Apr 2022 21:28:31 +0000 (+0100) Subject: humantime: Promote dependency to otter main crate X-Git-Tag: otter-1.1.0~609 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=38e2a67789286db7db5f6f35dd0b654a164745e0;p=otter.git humantime: Promote dependency to otter main crate We are going to want this for dice cooldown spec. Signed-off-by: Ian Jackson --- diff --git a/Cargo.lock b/Cargo.lock index cfe5d84d..a69a1736 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2652,6 +2652,7 @@ dependencies = [ "flexi_logger", "fs2", "glob", + "humantime", "image", "index_vec", "inventory", @@ -2702,7 +2703,6 @@ version = "1.0.0" dependencies = [ "ego-tree", "fehler", - "humantime", "num-traits", "otter", "reqwest", diff --git a/Cargo.toml b/Cargo.toml index ecda9366..6aa505a1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -52,6 +52,7 @@ env_logger="0.9" fehler="1" fs2="0.4" glob="0.3" +humantime="2" inventory="0.2" lazy-init="0.5" lazy_static="1" diff --git a/apitest/Cargo.toml b/apitest/Cargo.toml index 50cf5c94..d00c4c7d 100644 --- a/apitest/Cargo.toml +++ b/apitest/Cargo.toml @@ -31,7 +31,6 @@ otter.version="=1.0.0" ego-tree="0.6" fehler="1" -humantime="2" num-traits="0.2" scraper="0.12" structopt="0.3" diff --git a/src/imports.rs b/src/imports.rs index 9fe658b6..d5594005 100644 --- a/src/imports.rs +++ b/src/imports.rs @@ -20,6 +20,7 @@ pub use env_logger; pub use flexi_logger; pub use fs2; pub use glob; +pub use humantime; pub use index_vec; pub use lazy_init; pub use lazy_static;