drop the sqlite feature from database

This commit is contained in:
Paul Robertson 2024-06-26 19:20:54 -04:00
parent 68f1b4789a
commit 325f1c0bd2
No known key found for this signature in database
2 changed files with 0 additions and 8 deletions

1
Cargo.lock generated
View file

@ -716,7 +716,6 @@ dependencies = [
"lru-cache", "lru-cache",
"parking_lot", "parking_lot",
"ruma", "ruma",
"rusqlite",
"rust-rocksdb-uwu", "rust-rocksdb-uwu",
"thread_local", "thread_local",
"tokio", "tokio",

View file

@ -24,11 +24,6 @@ release_max_log_level = [
"log/max_level_trace", "log/max_level_trace",
"log/release_max_level_info", "log/release_max_level_info",
] ]
sqlite = [
"dep:rusqlite",
"dep:parking_lot",
"dep:thread_local",
]
rocksdb = [ rocksdb = [
"dep:rust-rocksdb", "dep:rust-rocksdb",
] ]
@ -50,8 +45,6 @@ lru-cache.workspace = true
parking_lot.optional = true parking_lot.optional = true
parking_lot.workspace = true parking_lot.workspace = true
ruma.workspace = true ruma.workspace = true
rusqlite.optional = true
rusqlite.workspace = true
rust-rocksdb.optional = true rust-rocksdb.optional = true
rust-rocksdb.workspace = true rust-rocksdb.workspace = true
thread_local.optional = true thread_local.optional = true