Replace lru-cache with hashlink

This commit is contained in:
chertov 2020-12-01 18:45:34 +03:00 committed by Ryan Leckey
parent 7f1bff406d
commit 04647ae09a
2 changed files with 2 additions and 2 deletions

View File

@ -106,4 +106,4 @@ webpki = { version = "0.21.3", optional = true }
webpki-roots = { version = "0.20.0", optional = true }
whoami = "0.9.0"
stringprep = "0.1.2"
lru-cache = "0.1.2"
hashlink = "0.6.0"

View File

@ -1,4 +1,4 @@
use lru_cache::LruCache;
use hashlink::lru_cache::LruCache;
/// A cache for prepared statements. When full, the least recently used
/// statement gets removed.