update cargo-sort (#8933)

Co-Authored-By: Tan Chee Keong <tanck@sigmaprime.io>
This commit is contained in:
chonghe
2026-03-05 11:48:30 +08:00
committed by Michael Sproul
parent 71f6eab51f
commit ac1db1d2e2
3 changed files with 5 additions and 32 deletions

View File

@@ -13,7 +13,7 @@ logroller = { workspace = true }
metrics = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
tokio = { workspace = true, features = [ "time" ] }
tokio = { workspace = true, features = ["time"] }
tracing = { workspace = true }
tracing-appender = { workspace = true }
tracing-core = { workspace = true }

View File

@@ -35,7 +35,4 @@ tikv-jemallocator = { version = "0.6.0", optional = true, features = ["stats"] }
# Jemalloc's background_threads feature requires Linux (pthreads).
[target.'cfg(target_os = "linux")'.dependencies]
tikv-jemallocator = { version = "0.6.0", optional = true, features = [
"stats",
"background_threads",
] }
tikv-jemallocator = { version = "0.6.0", optional = true, features = ["stats", "background_threads"] }