mirror of
https://github.com/DefectingCat/phthonus
synced 2025-07-15 08:31:33 +00:00
fix(axum-xitca): missing feature
This commit is contained in:
51
frameworks/Rust/axum-xitca/Cargo.lock
generated
51
frameworks/Rust/axum-xitca/Cargo.lock
generated
@ -130,31 +130,6 @@ dependencies = [
|
||||
"tower-service",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "axum-xitca"
|
||||
version = "0.1.0"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"axum",
|
||||
"dotenvy",
|
||||
"http-body",
|
||||
"serde",
|
||||
"serde_json",
|
||||
"serde_repr",
|
||||
"thiserror",
|
||||
"tokio",
|
||||
"tower",
|
||||
"tower-http",
|
||||
"tracing",
|
||||
"tracing-subscriber",
|
||||
"xitca-http",
|
||||
"xitca-io",
|
||||
"xitca-server",
|
||||
"xitca-service",
|
||||
"xitca-unsafe-collection",
|
||||
"xitca-web",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "backtrace"
|
||||
version = "0.3.74"
|
||||
@ -559,6 +534,31 @@ version = "2.3.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
|
||||
|
||||
[[package]]
|
||||
name = "phthonus"
|
||||
version = "0.1.0"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"axum",
|
||||
"dotenvy",
|
||||
"http-body",
|
||||
"serde",
|
||||
"serde_json",
|
||||
"serde_repr",
|
||||
"thiserror",
|
||||
"tokio",
|
||||
"tower",
|
||||
"tower-http",
|
||||
"tracing",
|
||||
"tracing-subscriber",
|
||||
"xitca-http",
|
||||
"xitca-io",
|
||||
"xitca-server",
|
||||
"xitca-service",
|
||||
"xitca-unsafe-collection",
|
||||
"xitca-web",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "pin-project-lite"
|
||||
version = "0.2.14"
|
||||
@ -1212,6 +1212,7 @@ checksum = "a40a05f18780f1de843c5077583e4650b08d0518fcf9cf7948e28bc92e489736"
|
||||
dependencies = [
|
||||
"socket2 0.5.7",
|
||||
"tokio",
|
||||
"tokio-uring",
|
||||
"tracing",
|
||||
"xitca-io",
|
||||
"xitca-service",
|
||||
|
@ -1,5 +1,5 @@
|
||||
[package]
|
||||
name = "axum-xitca"
|
||||
name = "phthonus"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
|
||||
@ -9,13 +9,9 @@ axum = { version = "0.7.6", default-features = false, features = [
|
||||
"json",
|
||||
"query",
|
||||
] }
|
||||
xitca-server = "0.4.0"
|
||||
xitca-server = { version = "0.4.0", features = ["io-uring"] }
|
||||
xitca-http = { version = "0.6.0", features = ["io-uring"] }
|
||||
xitca-io = { version = "0.4.1", features = [
|
||||
"tokio-uring",
|
||||
"tokio",
|
||||
"runtime-uring",
|
||||
] }
|
||||
xitca-io = { version = "0.4.1", features = ["runtime-uring"] }
|
||||
xitca-service = "0.2.0"
|
||||
xitca-web = { version = "0.6.2", features = ["tower-http-compat"] }
|
||||
tower = "0.5.1"
|
||||
|
Reference in New Issue
Block a user