From: Ian Jackson Date: Fri, 27 Nov 2020 23:28:51 +0000 (+0000) Subject: drop unused hashlink dependency X-Git-Tag: otter-0.2.0~323 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=668a7d47fc2ff5985484352a2b4214e7d9e1bb75;p=otter.git drop unused hashlink dependency Signed-off-by: Ian Jackson --- diff --git a/Cargo.lock.example b/Cargo.lock.example index 18cc302a..028204bd 100644 --- a/Cargo.lock.example +++ b/Cargo.lock.example @@ -70,12 +70,6 @@ dependencies = [ "opaque-debug", ] -[[package]] -name = "ahash" -version = "0.3.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e8fd72866655d1904d6b0997d0b07ba561047d070fbe29de039031c641b61217" - [[package]] name = "aho-corasick" version = "0.7.15" @@ -634,30 +628,12 @@ version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574" -[[package]] -name = "hashbrown" -version = "0.8.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e91b62f79061a0bc2e046024cb7ba44b08419ed238ecbd9adbd787434b9e8c25" -dependencies = [ - "ahash", - "autocfg", -] - [[package]] name = "hashbrown" version = "0.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d7afe4a420e3fe79967a00898cc1f4db7c8a49a9333a29f8a4bd76a253d5cd04" -[[package]] -name = "hashlink" -version = "0.6.0-alpha.0" -dependencies = [ - "hashbrown 0.8.2", - "serde", -] - [[package]] name = "heck" version = "0.3.1" @@ -783,7 +759,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "55e2e4c765aa53a0424761bf9f41aa7a6ac1efa87238f59560640e27fca028f2" dependencies = [ "autocfg", - "hashbrown 0.9.1", + "hashbrown", ] [[package]] @@ -1143,7 +1119,6 @@ dependencies = [ "flexi_logger", "fs2", "glob 0.3.0", - "hashlink", "htmlescape", "if_chain", "index_vec", diff --git a/Cargo.nail b/Cargo.nail index 0edea884..e68bae29 100644 --- a/Cargo.nail +++ b/Cargo.nail @@ -5,7 +5,6 @@ subdirs = """ server bundle-sources -hashlink """ [arch] diff --git a/Cargo.toml b/Cargo.toml index ec33afdd..356b264f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -31,7 +31,6 @@ fehler = "1" flexi_logger = { version = "0.16", features = [ "specfile" ] } fs2 = "0.4" glob = "0.3" -hashlink = { version = "0.5", features = ["serde_impl"] } htmlescape = "0.3" if_chain = "1" index_vec = { version = "0.1.1", features = ['serde'] } diff --git a/src/imports.rs b/src/imports.rs index cf5d5c97..52a1131c 100644 --- a/src/imports.rs +++ b/src/imports.rs @@ -93,8 +93,6 @@ pub use num_traits::{Bounded, FromPrimitive, ToPrimitive}; pub use flexi_logger::{LogSpecification}; -pub use hashlink::LinkedHashMap; - pub use delegate::delegate; pub use itertools::Itertools;