mirror of
https://github.com/trailbaseio/trailbase.git
synced 2025-12-30 06:09:48 -06:00
Use quick-cache instead of mini-moka for extension where TLL and similar features are not required.
This commit is contained in:
2
Cargo.lock
generated
2
Cargo.lock
generated
@@ -5872,8 +5872,8 @@ dependencies = [
|
||||
"jsonschema",
|
||||
"log",
|
||||
"maxminddb",
|
||||
"mini-moka",
|
||||
"parking_lot",
|
||||
"quick_cache",
|
||||
"regex",
|
||||
"rusqlite",
|
||||
"serde",
|
||||
|
||||
@@ -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 }
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
use mini_moka::sync::Cache;
|
||||
use quick_cache::sync::Cache;
|
||||
use regex::Regex;
|
||||
use rusqlite::Error;
|
||||
use rusqlite::functions::Context;
|
||||
|
||||
Reference in New Issue
Block a user