chore: slim down tokio features
This commit is contained in:
parent
713645a682
commit
9b6f438a98
5 changed files with 5 additions and 5 deletions
3
Cargo.lock
generated
3
Cargo.lock
generated
|
@ -4573,9 +4573,7 @@ dependencies = [
|
||||||
"bytes",
|
"bytes",
|
||||||
"libc",
|
"libc",
|
||||||
"mio",
|
"mio",
|
||||||
"parking_lot",
|
|
||||||
"pin-project-lite",
|
"pin-project-lite",
|
||||||
"signal-hook-registry",
|
|
||||||
"socket2",
|
"socket2",
|
||||||
"tokio-macros",
|
"tokio-macros",
|
||||||
"windows-sys 0.52.0",
|
"windows-sys 0.52.0",
|
||||||
|
@ -4924,6 +4922,7 @@ dependencies = [
|
||||||
"sha2",
|
"sha2",
|
||||||
"sha256",
|
"sha256",
|
||||||
"thiserror 2.0.10",
|
"thiserror 2.0.10",
|
||||||
|
"tokio",
|
||||||
"toml",
|
"toml",
|
||||||
"tracing",
|
"tracing",
|
||||||
"uriproxy",
|
"uriproxy",
|
||||||
|
|
|
@ -34,7 +34,7 @@ tracing-subscriber = "0.3"
|
||||||
clap = { version = "4.5", features = ["derive"] }
|
clap = { version = "4.5", features = ["derive"] }
|
||||||
signal-hook = "0.3"
|
signal-hook = "0.3"
|
||||||
signal-hook-tokio = { version = "0.3", features = ["futures-v0_3"] }
|
signal-hook-tokio = { version = "0.3", features = ["futures-v0_3"] }
|
||||||
tokio = { version = "1.43", features = ["full"] } # TODO slim this down
|
tokio = { version = "1.43", features = ["rt-multi-thread", "macros"] }
|
||||||
sea-orm = { version = "1.1", features = ["sqlx-sqlite", "sqlx-postgres", "runtime-tokio-rustls"] }
|
sea-orm = { version = "1.1", features = ["sqlx-sqlite", "sqlx-postgres", "runtime-tokio-rustls"] }
|
||||||
futures = "0.3"
|
futures = "0.3"
|
||||||
|
|
||||||
|
|
|
@ -31,6 +31,7 @@ httpsign = { path = "../../utils/httpsign/" }
|
||||||
mdhtml = { path = "../../utils/mdhtml/" }
|
mdhtml = { path = "../../utils/mdhtml/" }
|
||||||
jrd = "0.1"
|
jrd = "0.1"
|
||||||
tracing = "0.1"
|
tracing = "0.1"
|
||||||
|
tokio = "1.43"
|
||||||
sea-orm = { version = "1.1", features = ["macros"] }
|
sea-orm = { version = "1.1", features = ["macros"] }
|
||||||
reqwest = { version = "0.12", features = ["json"] }
|
reqwest = { version = "0.12", features = ["json"] }
|
||||||
apb = { path = "../../apb", features = ["unstructured", "orm", "did-core", "activitypub-miscellaneous-terms", "activitypub-fe", "activitypub-counters", "litepub", "ostatus", "toot"] }
|
apb = { path = "../../apb", features = ["unstructured", "orm", "did-core", "activitypub-miscellaneous-terms", "activitypub-fe", "activitypub-counters", "litepub", "ostatus", "toot"] }
|
||||||
|
|
|
@ -20,7 +20,7 @@ serde_json = "1.0"
|
||||||
upub = { path = "../core/" }
|
upub = { path = "../core/" }
|
||||||
jrd = "0.1"
|
jrd = "0.1"
|
||||||
tracing = "0.1"
|
tracing = "0.1"
|
||||||
tokio = { version = "1.43", features = ["full"] } # TODO slim this down
|
tokio = "1.43"
|
||||||
reqwest = { version = "0.12", features = ["json"] }
|
reqwest = { version = "0.12", features = ["json"] }
|
||||||
axum = { version = "0.8", features = ["multipart"] }
|
axum = { version = "0.8", features = ["multipart"] }
|
||||||
tower-http = { version = "0.6", features = ["cors", "trace"] }
|
tower-http = { version = "0.6", features = ["cors", "trace"] }
|
||||||
|
|
|
@ -18,7 +18,7 @@ serde_json = "1.0"
|
||||||
sea-orm = "1.1"
|
sea-orm = "1.1"
|
||||||
regex = "1.11"
|
regex = "1.11"
|
||||||
chrono = { version = "0.4", features = ["serde"] }
|
chrono = { version = "0.4", features = ["serde"] }
|
||||||
tokio = { version = "1.43", features = ["full"] } # TODO slim this down
|
tokio = { version = "1.43", features = ["time"] }
|
||||||
reqwest = { version = "0.12", features = ["json"] }
|
reqwest = { version = "0.12", features = ["json"] }
|
||||||
apb = { path = "../../apb", features = ["unstructured", "orm", "activitypub-fe", "activitypub-counters", "litepub", "ostatus", "toot"] }
|
apb = { path = "../../apb", features = ["unstructured", "orm", "activitypub-fe", "activitypub-counters", "litepub", "ostatus", "toot"] }
|
||||||
mdhtml = { path = "../../utils/mdhtml/" }
|
mdhtml = { path = "../../utils/mdhtml/" }
|
||||||
|
|
Loading…
Reference in a new issue