From 89c4af0cc27ae672461aad6d0ea019b1c38d6126 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Renault?= Date: Mon, 17 Dec 2018 14:55:23 +0100 Subject: [PATCH] chore: Clean up dependencies and avoid custom ones --- Cargo.toml | 13 ++++--------- src/automaton.rs | 15 --------------- 2 files changed, 4 insertions(+), 24 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index a4618b279..970365b18 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,28 +7,23 @@ authors = ["Kerollmops "] [dependencies] bincode = "1.0" byteorder = "1.2" +fst = "0.3" hashbrown = "0.1" lazy_static = "1.1" +levenshtein_automata = { version = "0.1", features = ["fst_automaton"] } linked-hash-map = { version = "0.5", features = ["serde_impl"] } sdset = "0.3" serde = "1.0" serde_derive = "1.0" unidecode = "0.3" -[dependencies.fst] -git = "https://github.com/Kerollmops/fst.git" -branch = "automaton-for-deref" - -[dependencies.levenshtein_automata] -git = "https://github.com/Kerollmops/levenshtein-automata.git" -branch = "new-custom-fst" -features = ["fst_automaton"] - [dependencies.rocksdb] git = "https://github.com/pingcap/rust-rocksdb.git" +rev = "c2eb140" [dependencies.group-by] git = "https://github.com/Kerollmops/group-by.git" +rev = "cab857b" [features] default = ["simd"] diff --git a/src/automaton.rs b/src/automaton.rs index f8898424d..d3eb81961 100644 --- a/src/automaton.rs +++ b/src/automaton.rs @@ -1,5 +1,3 @@ -use std::ops::Deref; - use fst::Automaton; use lazy_static::lazy_static; use levenshtein_automata::{ @@ -90,16 +88,3 @@ pub trait AutomatonExt: Automaton { fn eval>(&self, s: B) -> Distance; fn query_len(&self) -> usize; } - -impl AutomatonExt for T -where T: Deref, - T::Target: AutomatonExt, -{ - fn eval>(&self, s: B) -> Distance { - (**self).eval(s) - } - - fn query_len(&self) -> usize { - (**self).query_len() - } -}