diff --git a/Cargo.lock b/Cargo.lock index cffc699..8490ded 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -705,25 +705,25 @@ dependencies = [ [[package]] name = "cached" -version = "0.30.0" +version = "0.32.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "af4dfac631a8e77b2f327f7852bb6172771f5279c4512efe79fad6067b37be3d" +checksum = "a8c2f17f7be6adf37bd51e543537b0a9e51d865e94c11a421a5a3c8aafac41af" dependencies = [ "async-mutex", "async-rwlock", - "async-trait", "cached_proc_macro", "cached_proc_macro_types", - "futures", "hashbrown", "once_cell", + "thiserror", + "tokio 1.15.0", ] [[package]] name = "cached_proc_macro" -version = "0.9.0" +version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "725f434d6da2814b989bd905c62ca28a9383feff7440210dc279665fbbbc9511" +checksum = "dc8de7b947777686ee8f3c11f4c3e58c296d6bc598d9b2286a80a9404a538ff8" dependencies = [ "cached_proc_macro_types", "darling", @@ -2845,9 +2845,21 @@ dependencies = [ "parking_lot", "pin-project-lite 0.2.8", "signal-hook-registry", + "tokio-macros", "winapi 0.3.9", ] +[[package]] +name = "tokio-macros" +version = "1.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b557f72f448c511a979e2564e55d74e6c4432fc96ff4f6241bc6bded342643b7" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + [[package]] name = "tokio-native-tls" version = "0.3.0" diff --git a/Cargo.toml b/Cargo.toml index db6efdc..27a8640 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,7 @@ actix-web = "4.0.0-rc.3" ansi-to-html = "0.1.0" anyhow = "1.0.55" bigdecimal = "0.3.0" -cached = "0.30.0" +cached = "0.32.1" chrono = "0.4.19" deadpool-postgres = "0.10.1" enum-display-derive = "0.1.1"