From: Ian Jackson Date: Sun, 14 Feb 2021 23:27:21 +0000 (+0000) Subject: Centralise index_vec X-Git-Tag: otter-0.4.0~468 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=52eade05ef9eaf127719e72d20ea418b33bede5d;p=otter.git Centralise index_vec Signed-off-by: Ian Jackson --- diff --git a/Cargo.lock.example b/Cargo.lock.example index 67a405d6..8dacb138 100644 --- a/Cargo.lock.example +++ b/Cargo.lock.example @@ -1650,7 +1650,6 @@ name = "otter-daemon" version = "0.0.1" dependencies = [ "fehler", - "index_vec", "inventory", "itertools", "lazy-init", diff --git a/Cargo.toml b/Cargo.toml index 6f8e2b6f..93295968 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -33,8 +33,8 @@ flexi_logger = { version = "0.17", features = [ "specfile" ] } fs2 = "0.4" glob = "0.3" htmlescape = "0.3" - index_vec = { version = "0.1.1", features = ['serde'] } + inventory = "0.1" itertools = "0.10" lazy_static = "1" diff --git a/daemon/Cargo.toml b/daemon/Cargo.toml index cddb51fc..eeaca522 100644 --- a/daemon/Cargo.toml +++ b/daemon/Cargo.toml @@ -18,7 +18,6 @@ path = "main.rs" otter = { path = ".." } otter-base = { path = "../base" } -index_vec = { version = "0.1.1", features = ['serde'] } inventory = "0.1" itertools = "0.10" lazy_static = "1" diff --git a/src/imports.rs b/src/imports.rs index ea9cd1ad..6ed57df4 100644 --- a/src/imports.rs +++ b/src/imports.rs @@ -16,3 +16,4 @@ pub use flexi_logger; pub use fs2; pub use glob; pub use htmlescape; +pub use index_vec;