88 lines
1.8 KiB
TOML
88 lines
1.8 KiB
TOML
[package]
|
|
name = "conduwuit_router"
|
|
categories.workspace = true
|
|
description.workspace = true
|
|
edition.workspace = true
|
|
keywords.workspace = true
|
|
license.workspace = true
|
|
readme.workspace = true
|
|
repository.workspace = true
|
|
version.workspace = true
|
|
|
|
[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",
|
|
]
|
|
|
|
[dependencies]
|
|
axum-client-ip.workspace = true
|
|
axum-server-dual-protocol.workspace = true
|
|
axum-server-dual-protocol.optional = true
|
|
axum-server.workspace = true
|
|
axum.workspace = true
|
|
bytes.workspace = true
|
|
conduwuit-admin.workspace = true
|
|
conduwuit-api.workspace = true
|
|
conduwuit-core.workspace = true
|
|
conduwuit-service.workspace = true
|
|
const-str.workspace = true
|
|
futures.workspace = true
|
|
http.workspace = true
|
|
http-body-util.workspace = true
|
|
hyper.workspace = true
|
|
hyper-util.workspace = true
|
|
log.workspace = true
|
|
ruma.workspace = true
|
|
rustls.workspace = true
|
|
rustls.optional = true
|
|
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
|
|
tower-http.workspace = true
|
|
tracing.workspace = true
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
sd-notify.workspace = true
|
|
sd-notify.optional = true
|
|
|
|
[lints]
|
|
workspace = true
|