1
0
mirror of https://github.com/matrix-org/matrix-authentication-service.git synced 2025-09-14 11:29:26 +03:00
Files
authentication-service/crates/http/Cargo.toml
2024-07-25 11:01:43 +02:00

56 lines
1.3 KiB
TOML

[package]
name = "mas-http"
description = "HTTP utilities for the Matrix Authentication Service"
version.workspace = true
authors.workspace = true
edition.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
[lints]
workspace = true
[dependencies]
async-trait.workspace = true
bytes.workspace = true
futures-util = "0.3.30"
headers.workspace = true
http.workspace = true
http-body.workspace = true
http-body-util.workspace = true
hyper.workspace = true
hyper-util.workspace = true
hyper-rustls = { workspace = true, optional = true }
opentelemetry.workspace = true
opentelemetry-semantic-conventions.workspace = true
rustls = { workspace = true, optional = true }
rustls-platform-verifier = { workspace = true, optional = true }
pin-project-lite = "0.2.14"
serde.workspace = true
serde_json.workspace = true
serde_urlencoded = "0.7.1"
thiserror.workspace = true
tower.workspace = true
tower-http.workspace = true
tracing.workspace = true
tracing-opentelemetry.workspace = true
mas-tower = { workspace = true, optional = true }
[dev-dependencies]
anyhow.workspace = true
tokio.workspace = true
[features]
client = [
"dep:mas-tower",
"dep:rustls",
"dep:hyper-rustls",
"dep:rustls-platform-verifier",
"tower/limit",
"tower-http/timeout",
"tower-http/follow-redirect",
"tower-http/set-header",
]