You've already forked authentication-service
mirror of
https://github.com/matrix-org/matrix-authentication-service.git
synced 2025-07-29 22:01:14 +03:00
Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.33.0 to 1.34.0. - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.33.0...tokio-1.34.0) --- updated-dependencies: - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
55 lines
1.5 KiB
TOML
55 lines
1.5 KiB
TOML
[package]
|
|
name = "mas-http"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
|
|
[dependencies]
|
|
axum = { version = "0.6.20", optional = true }
|
|
bytes = "1.5.0"
|
|
futures-util = "0.3.28"
|
|
headers = "0.3.9"
|
|
http.workspace = true
|
|
http-body = "0.4.5"
|
|
hyper = "0.14.27"
|
|
hyper-rustls = { version = "0.24.1", features = ["http1", "http2"], default-features = false, optional = true }
|
|
once_cell = "1.18.0"
|
|
opentelemetry.workspace = true
|
|
rustls = { version = "0.21.8", optional = true }
|
|
rustls-native-certs = { version = "0.6.3", optional = true }
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
serde_urlencoded = "0.7.1"
|
|
thiserror.workspace = true
|
|
tokio = { version = "1.34.0", features = ["sync", "parking_lot"], optional = true }
|
|
tower = { version = "0.4.13", features = [] }
|
|
tower-http = { version = "0.4.4", features = ["cors"] }
|
|
tracing.workspace = true
|
|
tracing-opentelemetry.workspace = true
|
|
webpki-roots = { version = "0.25.2", optional = true }
|
|
|
|
mas-tower = { path = "../tower" }
|
|
|
|
[dev-dependencies]
|
|
anyhow.workspace = true
|
|
tokio = { version = "1.34.0", features = ["macros", "rt"] }
|
|
tower = { version = "0.4.13", features = ["util"] }
|
|
|
|
[features]
|
|
axum = ["dep:axum"]
|
|
native-roots = ["dep:rustls-native-certs"]
|
|
webpki-roots = ["dep:webpki-roots"]
|
|
client = [
|
|
"dep:rustls",
|
|
"hyper/tcp",
|
|
"dep:hyper-rustls",
|
|
"dep:tokio",
|
|
"tower/limit",
|
|
"tower-http/timeout",
|
|
"tower-http/follow-redirect",
|
|
"tower-http/set-header",
|
|
]
|