drop thread_local feature

This commit is contained in:
Paul Robertson 2024-06-26 19:26:57 -04:00
parent e24b7d2f3e
commit 5e6b9ec1cf
No known key found for this signature in database
4 changed files with 0 additions and 10 deletions

2
Cargo.lock generated
View file

@ -694,7 +694,6 @@ dependencies = [
"serde_json", "serde_json",
"serde_regex", "serde_regex",
"thiserror", "thiserror",
"thread_local",
"tikv-jemalloc-ctl", "tikv-jemalloc-ctl",
"tikv-jemalloc-sys", "tikv-jemalloc-sys",
"tikv-jemallocator", "tikv-jemallocator",
@ -716,7 +715,6 @@ dependencies = [
"parking_lot", "parking_lot",
"ruma", "ruma",
"rust-rocksdb-uwu", "rust-rocksdb-uwu",
"thread_local",
"tokio", "tokio",
"tracing", "tracing",
] ]

View file

@ -382,10 +382,6 @@ features = ["use_std"]
[workspace.dependencies.parking_lot] [workspace.dependencies.parking_lot]
version = "0.12.3" version = "0.12.3"
# used only by rusqlite
[workspace.dependencies.thread_local]
version = "1.1.8"
[workspace.dependencies.tokio-metrics] [workspace.dependencies.tokio-metrics]
version = "0.3.1" version = "0.3.1"
default-features = false default-features = false

View file

@ -81,8 +81,6 @@ serde_json.workspace = true
serde_regex.workspace = true serde_regex.workspace = true
serde.workspace = true serde.workspace = true
thiserror.workspace = true thiserror.workspace = true
thread_local.optional = true
thread_local.workspace = true
tikv-jemallocator.optional = true tikv-jemallocator.optional = true
tikv-jemallocator.workspace = true tikv-jemallocator.workspace = true
tikv-jemalloc-ctl.optional = true tikv-jemalloc-ctl.optional = true

View file

@ -47,8 +47,6 @@ parking_lot.workspace = true
ruma.workspace = true ruma.workspace = true
rust-rocksdb.optional = true rust-rocksdb.optional = true
rust-rocksdb.workspace = true rust-rocksdb.workspace = true
thread_local.optional = true
thread_local.workspace = true
tokio.workspace = true tokio.workspace = true
tracing.workspace = true tracing.workspace = true