warpgate/warpgate-protocol-http/Cargo.toml

46 lines
1.3 KiB
TOML
Raw Normal View History

2022-06-27 02:50:04 +08:00
[package]
edition = "2021"
license = "Apache-2.0"
2022-06-27 02:50:04 +08:00
name = "warpgate-protocol-http"
2024-08-15 04:59:52 +08:00
version = "0.10.2"
2022-06-27 02:50:04 +08:00
[dependencies]
anyhow = "1.0"
async-trait = "0.1"
2024-07-16 16:40:20 +08:00
chrono = { version = "0.4", default-features = false, features = ["serde"] }
2024-09-18 17:28:39 +08:00
cookie = "0.17"
data-encoding = "2.3"
2022-06-27 02:50:04 +08:00
delegate = "0.6"
futures = "0.3"
2024-09-18 17:28:39 +08:00
http = "1.0"
once_cell = "1.17"
2024-09-18 17:28:39 +08:00
poem = { version = "3.1", features = [
"cookie",
"session",
"anyhow",
"rustls",
"websocket",
"sse",
"embed",
] }
2024-09-18 17:28:39 +08:00
poem-openapi = { version = "5.1", features = ["swagger-ui"] }
reqwest = { version = "0.12", features = [
2024-07-16 18:56:42 +08:00
"rustls-tls-native-roots",
"stream",
], default-features = false }
serde = "1.0"
serde_json = "1.0"
tokio = { version = "1.20", features = ["tracing", "signal"] }
2024-09-18 17:28:39 +08:00
tokio-tungstenite = { version = "0.24", features = ["rustls-tls-native-roots"] }
tracing = "0.1"
warpgate-admin = { version = "*", path = "../warpgate-admin" }
warpgate-common = { version = "*", path = "../warpgate-common" }
warpgate-core = { version = "*", path = "../warpgate-core" }
warpgate-db-entities = { version = "*", path = "../warpgate-db-entities" }
warpgate-web = { version = "*", path = "../warpgate-web" }
warpgate-sso = { version = "*", path = "../warpgate-sso" }
2022-06-27 02:50:04 +08:00
percent-encoding = "2.1"
2024-09-18 17:28:39 +08:00
uuid = { version = "1.3", features = ["v4"] }
regex = "1.6"
2024-09-18 17:28:39 +08:00
url = "2.4"