Use quick-cache instead of mini-moka for extension where TLL and similar features are not required.

This commit is contained in:
Sebastian Jeltsch
2025-12-12 11:43:43 +01:00
parent 7bfed3d7cc
commit c5a7980e7c
4 changed files with 4 additions and 4 deletions

2
Cargo.lock generated
View File

@@ -5872,8 +5872,8 @@ dependencies = [
"jsonschema",
"log",
"maxminddb",
"mini-moka",
"parking_lot",
"quick_cache",
"regex",
"rusqlite",
"serde",

View File

@@ -18,8 +18,8 @@ base64 = { workspace = true }
jsonschema = { version = "0.37.1", default-features = false }
log = "0.4.27"
maxminddb = "0.27.0"
mini-moka = "0.10.3"
parking_lot = { workspace = true }
quick_cache = "0.6.18"
regex = "1.11.0"
rusqlite = { workspace = true }
serde = { workspace = true }

View File

@@ -1,5 +1,5 @@
use jsonschema::Validator;
use mini_moka::sync::Cache;
use quick_cache::sync::Cache;
use rusqlite::Error;
use rusqlite::functions::Context;
use std::collections::HashMap;

View File

@@ -1,4 +1,4 @@
use mini_moka::sync::Cache;
use quick_cache::sync::Cache;
use regex::Regex;
use rusqlite::Error;
use rusqlite::functions::Context;