Files
continuwuity/src/router/Cargo.toml
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

89 lines
1.8 KiB
TOML
Raw Normal View History

2024-05-09 15:59:08 -07:00
[package]
2024-12-14 21:58:01 -05:00
name = "conduwuit_router"
2024-06-01 10:19:26 +00:00
categories.workspace = true
description.workspace = true
2024-05-09 15:59:08 -07:00
edition.workspace = true
2024-06-01 10:19:26 +00:00
keywords.workspace = true
license.workspace = true
readme.workspace = true
repository.workspace = true
version.workspace = true
2024-05-09 15:59:08 -07:00
[lib]
path = "mod.rs"
crate-type = [
"rlib",
# "dylib",
]
[features]
release_max_log_level = [
"tracing/max_level_trace",
"tracing/release_max_level_info",
"log/max_level_trace",
"log/release_max_level_info",
]
sentry_telemetry = [
"dep:sentry",
"dep:sentry-tracing",
"dep:sentry-tower",
]
zstd_compression = [
"tower-http/compression-zstd",
]
gzip_compression = [
"tower-http/compression-gzip",
]
brotli_compression = [
"tower-http/compression-br",
]
systemd = [
"dep:sd-notify",
]
direct_tls = [
"axum-server/tls-rustls",
"dep:rustls",
"dep:axum-server-dual-protocol",
]
2024-05-09 15:59:08 -07:00
[dependencies]
2024-06-07 01:01:30 +00:00
axum-client-ip.workspace = true
2024-05-09 15:59:08 -07:00
axum-server-dual-protocol.workspace = true
axum-server-dual-protocol.optional = true
2024-05-09 15:59:08 -07:00
axum-server.workspace = true
axum.workspace = true
bytes.workspace = true
2024-12-14 21:58:01 -05:00
conduwuit-admin.workspace = true
conduwuit-api.workspace = true
conduwuit-core.workspace = true
conduwuit-service.workspace = true
2024-07-13 21:02:43 +00:00
const-str.workspace = true
futures.workspace = true
2024-05-09 15:59:08 -07:00
http.workspace = true
http-body-util.workspace = true
2024-05-29 16:59:20 +00:00
hyper.workspace = true
hyper-util.workspace = true
log.workspace = true
2024-05-09 15:59:08 -07:00
ruma.workspace = true
rustls.workspace = true
rustls.optional = true
2024-05-09 15:59:08 -07:00
sentry.optional = true
sentry-tower.optional = true
sentry-tower.workspace = true
sentry-tracing.optional = true
sentry-tracing.workspace = true
sentry.workspace = true
serde_json.workspace = true
tokio.workspace = true
tower.workspace = true
2024-05-09 15:59:08 -07:00
tower-http.workspace = true
tracing.workspace = true
2024-05-09 15:59:08 -07:00
2025-01-10 10:25:07 -05:00
[target.'cfg(all(unix, target_os = "linux"))'.dependencies]
2024-05-09 15:59:08 -07:00
sd-notify.workspace = true
sd-notify.optional = true
[lints]
workspace = true