2020-02-15 22:42:21 +01:00
|
|
|
[package]
|
2024-04-26 00:15:41 -04:00
|
|
|
# TODO: when can we rename to conduwuit?
|
2024-01-27 16:41:27 -05:00
|
|
|
name = "conduit"
|
2024-04-26 00:15:41 -04:00
|
|
|
description = "a very cool fork of Conduit, a Matrix homeserver written in Rust"
|
2020-08-24 11:32:15 +02:00
|
|
|
license = "Apache-2.0"
|
2024-03-22 21:50:51 -04:00
|
|
|
authors = [
|
|
|
|
"strawberry <strawberry@puppygock.gay>",
|
|
|
|
"timokoesters <timo@koesters.xyz>",
|
|
|
|
]
|
2024-04-25 00:09:50 -04:00
|
|
|
homepage = "https://conduwuit.puppyirl.gay/"
|
2024-04-10 23:52:12 -04:00
|
|
|
repository = "https://github.com/girlbossceo/conduwuit"
|
2020-04-10 07:53:20 +02:00
|
|
|
readme = "README.md"
|
2024-05-17 03:17:11 -04:00
|
|
|
version = "0.3.4"
|
2022-01-20 12:29:52 +01:00
|
|
|
edition = "2021"
|
2020-02-15 22:42:21 +01:00
|
|
|
|
2024-01-25 23:39:59 -05:00
|
|
|
# See also `rust-toolchain.toml`
|
2024-05-03 10:59:36 -04:00
|
|
|
rust-version = "1.77.0"
|
2022-12-23 00:20:05 -08:00
|
|
|
|
2020-02-15 22:42:21 +01:00
|
|
|
[dependencies]
|
2024-05-03 02:08:26 -04:00
|
|
|
console-subscriber = { version = "0.2", optional = true }
|
2024-04-25 09:07:59 -07:00
|
|
|
|
2024-05-10 19:32:33 -04:00
|
|
|
infer = { version = "0.15", default-features = false }
|
2024-05-07 16:36:22 -04:00
|
|
|
|
2024-04-28 18:29:48 -04:00
|
|
|
# for hot lib reload
|
2024-04-26 16:52:22 -04:00
|
|
|
hot-lib-reloader = { version = "^0.7", optional = true }
|
2024-04-22 22:36:11 -04:00
|
|
|
|
2020-08-25 11:49:51 +02:00
|
|
|
# Used for secure identifiers
|
2023-05-21 13:42:59 +02:00
|
|
|
rand = "0.8.5"
|
2024-03-09 15:49:51 -05:00
|
|
|
|
2020-08-25 11:49:51 +02:00
|
|
|
# Used for conduit::Error type
|
2024-05-10 19:32:33 -04:00
|
|
|
thiserror = "1.0.60"
|
2024-03-09 15:49:51 -05:00
|
|
|
|
2020-08-25 11:49:51 +02:00
|
|
|
# Used to encode server public key
|
2024-05-01 15:35:16 -04:00
|
|
|
base64 = "0.22.1"
|
2024-03-09 15:49:51 -05:00
|
|
|
|
2020-08-25 11:49:51 +02:00
|
|
|
# Used when hashing the state
|
2024-02-18 01:24:14 +00:00
|
|
|
ring = "0.17.8"
|
2024-03-09 15:49:51 -05:00
|
|
|
|
2020-12-23 19:41:54 +01:00
|
|
|
# Used to find matching events for appservices
|
2024-03-23 02:46:31 +00:00
|
|
|
regex = "1.10.4"
|
2024-03-09 15:49:51 -05:00
|
|
|
|
2024-02-08 19:11:48 -05:00
|
|
|
# Used to load forbidden room/user regex from config
|
|
|
|
serde_regex = "1.1.0"
|
2024-04-11 18:29:27 -04:00
|
|
|
|
|
|
|
# Used to make working with iterators easier, was already a transitive depdendency
|
2024-02-08 19:11:48 -05:00
|
|
|
itertools = "0.12.1"
|
2024-03-09 15:49:51 -05:00
|
|
|
|
2021-02-07 17:38:45 +01:00
|
|
|
# jwt jsonwebtokens
|
2024-03-21 22:41:26 +00:00
|
|
|
jsonwebtoken = "9.3.0"
|
2024-03-09 15:49:51 -05:00
|
|
|
|
2023-02-26 16:29:06 +01:00
|
|
|
# Used for ruma wrapper
|
2024-03-28 22:24:29 +00:00
|
|
|
serde_html_form = "0.2.6"
|
2022-01-19 07:09:25 +01:00
|
|
|
|
2021-10-02 00:37:39 +02:00
|
|
|
# used for TURN server authentication
|
2022-10-09 15:34:36 +02:00
|
|
|
hmac = "0.12.1"
|
2023-05-21 13:42:59 +02:00
|
|
|
sha-1 = "0.10.1"
|
2020-07-25 23:08:00 -04:00
|
|
|
|
2024-03-09 15:49:51 -05:00
|
|
|
# used for checking if an IP is in specific subnets / CIDR ranges easier
|
2024-01-21 22:59:06 -05:00
|
|
|
ipaddress = "0.1.3"
|
|
|
|
|
2024-02-25 21:47:40 -05:00
|
|
|
# to get the client IP address of requests
|
|
|
|
#axum-client-ip = "0.4.2"
|
2024-02-24 17:25:43 -05:00
|
|
|
|
2024-03-02 11:00:53 -05:00
|
|
|
# to parse user-friendly time durations in admin commands
|
|
|
|
cyborgtime = "2.1.1"
|
2024-02-11 11:49:31 -05:00
|
|
|
|
2024-03-09 15:49:51 -05:00
|
|
|
# all the web/HTTP dependencies
|
|
|
|
# Used for the http request / response body type for Ruma endpoints used with reqwest
|
2024-03-22 20:04:29 -04:00
|
|
|
bytes = "1.6.0"
|
2024-04-19 17:41:54 -07:00
|
|
|
http = "1.1.0"
|
|
|
|
http-body-util = "0.1.1"
|
2024-03-09 15:49:51 -05:00
|
|
|
|
2024-04-07 18:33:07 +02:00
|
|
|
# used to replace the channels of the tokio runtime
|
|
|
|
loole = "0.3.0"
|
|
|
|
|
2024-04-11 20:17:30 -04:00
|
|
|
# Validating urls in config, was already a transitive dependency
|
2024-05-01 15:35:16 -04:00
|
|
|
url = { version = "2.5.0", features = ["serde"] }
|
2024-04-11 20:17:30 -04:00
|
|
|
|
2024-04-19 17:41:54 -07:00
|
|
|
async-trait = "0.1.80"
|
|
|
|
|
|
|
|
lru-cache = "0.1.2"
|
2024-05-07 21:32:06 -04:00
|
|
|
sanitize-filename = "0.5.0"
|
2024-04-19 17:41:54 -07:00
|
|
|
|
2024-03-19 04:37:35 -07:00
|
|
|
# standard date and time tools
|
|
|
|
[dependencies.chrono]
|
2024-04-15 11:32:36 +00:00
|
|
|
version = "0.4.38"
|
2024-03-19 04:37:35 -07:00
|
|
|
features = ["alloc"]
|
|
|
|
default-features = false
|
|
|
|
|
2024-03-09 15:49:51 -05:00
|
|
|
# Web framework
|
|
|
|
[dependencies.axum]
|
2024-04-19 17:41:54 -07:00
|
|
|
version = "0.7.5"
|
|
|
|
default-features = false
|
|
|
|
features = ["form", "http1", "http2", "json", "matched-path"]
|
|
|
|
|
|
|
|
[dependencies.axum-extra]
|
|
|
|
version = "0.9.3"
|
2024-03-09 15:49:51 -05:00
|
|
|
default-features = false
|
2024-04-19 17:41:54 -07:00
|
|
|
features = ["typed-header"]
|
2024-03-09 15:49:51 -05:00
|
|
|
|
|
|
|
[dependencies.axum-server]
|
2024-04-19 17:41:54 -07:00
|
|
|
version = "0.6.0"
|
2024-03-09 15:49:51 -05:00
|
|
|
features = ["tls-rustls"]
|
|
|
|
|
|
|
|
[dependencies.tower]
|
|
|
|
version = "0.4.13"
|
|
|
|
features = ["util"]
|
|
|
|
|
|
|
|
[dependencies.tower-http]
|
2024-04-19 17:41:54 -07:00
|
|
|
version = "0.5.2"
|
2024-04-21 20:05:19 -04:00
|
|
|
features = [
|
|
|
|
"add-extension",
|
|
|
|
"cors",
|
|
|
|
"sensitive-headers",
|
2024-05-07 12:53:30 -04:00
|
|
|
"set-header",
|
2024-04-21 20:05:19 -04:00
|
|
|
"trace",
|
|
|
|
"util",
|
|
|
|
"catch-panic",
|
|
|
|
]
|
2024-03-09 15:49:51 -05:00
|
|
|
|
|
|
|
[dependencies.hyper]
|
2024-04-19 17:41:54 -07:00
|
|
|
version = "1.3.1"
|
2024-03-22 21:50:51 -04:00
|
|
|
features = ["server", "http1", "http2"]
|
2024-03-09 15:49:51 -05:00
|
|
|
|
2024-04-19 17:41:54 -07:00
|
|
|
[dependencies.hyper-util]
|
|
|
|
version = "0.1.3"
|
|
|
|
|
2024-03-09 15:49:51 -05:00
|
|
|
[dependencies.reqwest]
|
2024-04-19 17:41:54 -07:00
|
|
|
version = "0.12.4"
|
2024-03-09 15:49:51 -05:00
|
|
|
default-features = false
|
2024-04-17 20:05:56 -04:00
|
|
|
features = ["rustls-tls-native-roots", "socks", "hickory-dns"]
|
2024-03-09 15:49:51 -05:00
|
|
|
|
|
|
|
# all the serde stuff
|
|
|
|
# Used for pdu definition
|
|
|
|
[dependencies.serde]
|
2024-05-10 19:32:33 -04:00
|
|
|
version = "1.0.201"
|
2024-03-09 15:49:51 -05:00
|
|
|
features = ["rc"]
|
|
|
|
# Used for appservice registration files
|
|
|
|
[dependencies.serde_yaml]
|
2024-04-10 23:52:12 -04:00
|
|
|
version = "0.9.34"
|
2024-03-09 15:49:51 -05:00
|
|
|
# Used for ruma wrapper
|
|
|
|
[dependencies.serde_json]
|
2024-05-10 19:32:33 -04:00
|
|
|
version = "1.0.117"
|
2024-03-09 15:49:51 -05:00
|
|
|
features = ["raw_value"]
|
|
|
|
|
|
|
|
|
|
|
|
# Used for password hashing
|
|
|
|
[dependencies.argon2]
|
|
|
|
version = "0.5.3"
|
2024-03-22 21:50:51 -04:00
|
|
|
features = ["alloc", "rand"]
|
2024-03-09 15:49:51 -05:00
|
|
|
default-features = false
|
|
|
|
|
|
|
|
# Used to generate thumbnails for images
|
|
|
|
[dependencies.image]
|
2024-03-31 03:19:31 +00:00
|
|
|
version = "0.25.1"
|
2024-03-09 15:49:51 -05:00
|
|
|
default-features = false
|
2024-03-22 21:50:51 -04:00
|
|
|
features = ["jpeg", "png", "gif", "webp"]
|
2024-03-09 15:49:51 -05:00
|
|
|
|
|
|
|
# logging
|
2024-03-28 23:08:35 -07:00
|
|
|
[dependencies.log]
|
|
|
|
version = "0.4.21"
|
|
|
|
default-features = false
|
2024-03-09 15:49:51 -05:00
|
|
|
[dependencies.tracing]
|
|
|
|
version = "0.1.40"
|
|
|
|
default-features = false
|
|
|
|
[dependencies.tracing-subscriber]
|
|
|
|
version = "0.3.18"
|
|
|
|
features = ["env-filter"]
|
|
|
|
|
|
|
|
# optional SHA256 media keys feature
|
|
|
|
[dependencies.sha2]
|
|
|
|
version = "0.10.8"
|
|
|
|
optional = true
|
|
|
|
|
|
|
|
# optional opentelemetry, performance measurements, flamegraphs, etc for performance measurements and monitoring
|
|
|
|
[dependencies.opentelemetry]
|
|
|
|
version = "0.21.0"
|
|
|
|
optional = true
|
|
|
|
[dependencies.tracing-flame]
|
|
|
|
version = "0.2.0"
|
|
|
|
optional = true
|
|
|
|
[dependencies.tracing-opentelemetry]
|
2024-03-09 16:59:28 -05:00
|
|
|
version = "0.22.0"
|
2024-03-09 15:49:51 -05:00
|
|
|
optional = true
|
|
|
|
[dependencies.opentelemetry_sdk]
|
|
|
|
version = "0.21.2"
|
|
|
|
optional = true
|
|
|
|
features = ["rt-tokio"]
|
|
|
|
[dependencies.opentelemetry-jaeger]
|
|
|
|
version = "0.20.0"
|
|
|
|
optional = true
|
|
|
|
features = ["rt-tokio"]
|
|
|
|
|
2024-03-29 18:21:17 -04:00
|
|
|
# optional sentry metrics for crash/panic reporting
|
|
|
|
[dependencies.sentry]
|
2024-04-16 16:35:18 -04:00
|
|
|
version = "0.32.3"
|
2024-03-29 18:21:17 -04:00
|
|
|
optional = true
|
2024-03-29 19:08:16 -04:00
|
|
|
default-features = false
|
2024-04-05 17:54:38 -04:00
|
|
|
features = [
|
|
|
|
"backtrace",
|
|
|
|
"contexts",
|
|
|
|
"debug-images",
|
|
|
|
"panic",
|
|
|
|
"rustls",
|
|
|
|
"tower",
|
|
|
|
"tower-http",
|
|
|
|
"tracing",
|
|
|
|
"reqwest",
|
|
|
|
"log",
|
|
|
|
]
|
2024-03-29 19:08:16 -04:00
|
|
|
[dependencies.sentry-tracing]
|
2024-04-16 16:35:18 -04:00
|
|
|
version = "0.32.3"
|
2024-03-29 19:08:16 -04:00
|
|
|
optional = true
|
2024-03-29 23:16:55 -04:00
|
|
|
[dependencies.sentry-tower]
|
2024-04-16 16:35:18 -04:00
|
|
|
version = "0.32.3"
|
2024-03-29 23:16:55 -04:00
|
|
|
optional = true
|
2024-03-29 18:21:17 -04:00
|
|
|
|
2024-03-09 15:49:51 -05:00
|
|
|
# optional jemalloc usage
|
2024-04-27 04:50:20 -07:00
|
|
|
[dependencies.tikv-jemalloc-sys]
|
|
|
|
version = "0.5.4"
|
|
|
|
optional = true
|
|
|
|
default-features = false
|
|
|
|
features = ["stats", "unprefixed_malloc_on_supported_platforms"]
|
2024-03-09 15:49:51 -05:00
|
|
|
[dependencies.tikv-jemallocator]
|
|
|
|
version = "0.5.4"
|
|
|
|
optional = true
|
2024-03-10 00:15:14 -05:00
|
|
|
default-features = false
|
2024-04-27 04:50:20 -07:00
|
|
|
features = ["stats", "unprefixed_malloc_on_supported_platforms"]
|
2024-03-09 15:49:51 -05:00
|
|
|
[dependencies.tikv-jemalloc-ctl]
|
|
|
|
version = "0.5.4"
|
|
|
|
optional = true
|
2024-03-10 00:15:14 -05:00
|
|
|
default-features = false
|
2024-03-09 15:49:51 -05:00
|
|
|
features = ["use_std"]
|
|
|
|
|
|
|
|
# for URL previews
|
|
|
|
[dependencies.webpage]
|
2024-05-10 19:32:33 -04:00
|
|
|
version = "2.0.1"
|
2024-03-09 15:49:51 -05:00
|
|
|
default-features = false
|
|
|
|
|
|
|
|
# to support multiple variations of setting a config option
|
|
|
|
[dependencies.either]
|
2024-04-14 23:01:08 -04:00
|
|
|
version = "1.11.0"
|
2024-03-09 15:49:51 -05:00
|
|
|
features = ["serde"]
|
|
|
|
|
|
|
|
# to listen on both HTTP and HTTPS if listening on TLS dierctly from conduwuit for complement or sytest
|
|
|
|
[dependencies.axum-server-dual-protocol]
|
2024-04-19 23:39:28 -04:00
|
|
|
version = "0.6"
|
2024-03-09 15:49:51 -05:00
|
|
|
optional = true
|
|
|
|
|
|
|
|
# used for conduit's CLI and admin room command parsing
|
|
|
|
[dependencies.clap]
|
2024-03-25 22:00:45 +00:00
|
|
|
version = "4.5.4"
|
2024-03-09 15:49:51 -05:00
|
|
|
default-features = false
|
2024-03-22 21:50:51 -04:00
|
|
|
features = ["std", "derive", "help", "usage", "error-context", "string"]
|
2024-03-09 15:49:51 -05:00
|
|
|
|
|
|
|
[dependencies.futures-util]
|
|
|
|
version = "0.3.30"
|
|
|
|
default-features = false
|
|
|
|
|
2024-04-25 00:09:50 -04:00
|
|
|
# Used for reading the configuration from conduwuit.toml & environment variables
|
2024-03-09 15:49:51 -05:00
|
|
|
[dependencies.figment]
|
2024-04-21 20:05:19 -04:00
|
|
|
version = "0.10.18"
|
2024-03-22 21:50:51 -04:00
|
|
|
features = ["env", "toml"]
|
2024-03-09 15:49:51 -05:00
|
|
|
|
|
|
|
# Used for matrix spec type definitions and helpers
|
|
|
|
[dependencies.ruma]
|
|
|
|
git = "https://github.com/girlbossceo/ruma"
|
2024-03-27 13:36:15 -04:00
|
|
|
branch = "conduwuit-changes"
|
2024-03-09 15:49:51 -05:00
|
|
|
features = [
|
2024-03-22 21:50:51 -04:00
|
|
|
"compat",
|
|
|
|
"rand",
|
|
|
|
"appservice-api-c",
|
|
|
|
"client-api",
|
|
|
|
"federation-api",
|
|
|
|
"push-gateway-api-c",
|
|
|
|
"state-res",
|
|
|
|
"unstable-exhaustive-types",
|
|
|
|
"ring-compat",
|
|
|
|
"unstable-unspecified",
|
2024-04-07 15:45:48 -04:00
|
|
|
"unstable-msc2448",
|
|
|
|
"unstable-msc2666",
|
2024-04-05 17:54:38 -04:00
|
|
|
"unstable-msc2867",
|
2024-03-22 21:50:51 -04:00
|
|
|
"unstable-msc2870",
|
2024-04-05 17:54:38 -04:00
|
|
|
"unstable-msc3026",
|
2024-03-22 21:50:51 -04:00
|
|
|
"unstable-msc3061",
|
2024-04-07 15:45:48 -04:00
|
|
|
"unstable-msc3575",
|
2024-04-06 18:42:00 -04:00
|
|
|
"unstable-msc4121",
|
2024-04-11 18:29:27 -04:00
|
|
|
"unstable-msc4125",
|
2024-03-22 21:50:51 -04:00
|
|
|
"unstable-extensible-events",
|
2024-03-09 15:49:51 -05:00
|
|
|
]
|
|
|
|
|
2024-04-18 00:52:29 -07:00
|
|
|
[dependencies.ruma-identifiers-validation]
|
|
|
|
git = "https://github.com/girlbossceo/ruma"
|
|
|
|
branch = "conduwuit-changes"
|
|
|
|
|
2024-04-17 20:05:56 -04:00
|
|
|
[dependencies.hickory-resolver]
|
2024-04-19 17:41:54 -07:00
|
|
|
version = "0.24.1"
|
|
|
|
default-features = false
|
2024-04-17 20:05:56 -04:00
|
|
|
|
2024-03-09 15:49:51 -05:00
|
|
|
[dependencies.rust-rocksdb]
|
|
|
|
git = "https://github.com/zaidoon1/rust-rocksdb"
|
2024-05-12 01:49:38 -04:00
|
|
|
branch = "master"
|
2024-03-09 15:49:51 -05:00
|
|
|
optional = true
|
2024-03-09 16:59:28 -05:00
|
|
|
default-features = true
|
2024-03-28 19:29:51 -04:00
|
|
|
features = ["multi-threaded-cf", "zstd"]
|
2024-03-09 15:49:51 -05:00
|
|
|
|
|
|
|
[dependencies.rusqlite]
|
|
|
|
git = "https://github.com/rusqlite/rusqlite"
|
2024-03-26 21:47:59 -04:00
|
|
|
#branch = "master"
|
|
|
|
rev = "e00b626e2b1c67347d789fb7f600281705c89381"
|
2024-03-09 15:49:51 -05:00
|
|
|
optional = true
|
|
|
|
features = ["bundled"]
|
|
|
|
|
|
|
|
# used only by rusqlite
|
|
|
|
[dependencies.parking_lot]
|
2024-04-25 20:21:48 -04:00
|
|
|
version = "0.12.2"
|
2024-03-09 15:49:51 -05:00
|
|
|
optional = true
|
|
|
|
|
|
|
|
# used only by rusqlite
|
|
|
|
[dependencies.thread_local]
|
|
|
|
version = "1.1.8"
|
|
|
|
optional = true
|
|
|
|
|
|
|
|
# used only by rusqlite and rust-rocksdb
|
|
|
|
[dependencies.num_cpus]
|
|
|
|
version = "1.16.0"
|
|
|
|
|
2024-03-09 18:05:11 -05:00
|
|
|
[dependencies.tokio]
|
2024-03-28 16:56:10 +00:00
|
|
|
version = "1.37.0"
|
2024-03-22 21:50:51 -04:00
|
|
|
features = ["fs", "macros", "sync", "signal"]
|
2024-03-09 15:49:51 -05:00
|
|
|
|
|
|
|
# *nix-specific dependencies
|
2023-07-26 13:24:44 -07:00
|
|
|
[target.'cfg(unix)'.dependencies]
|
2024-02-24 15:32:01 -05:00
|
|
|
nix = { version = "0.28.0", features = ["resource"] }
|
2024-04-19 23:39:28 -04:00
|
|
|
sd-notify = { version = "0.4.1", optional = true } # systemd is only available/relevant on *nix platforms
|
|
|
|
|
2024-03-09 15:49:51 -05:00
|
|
|
|
2024-04-19 23:39:28 -04:00
|
|
|
[target.'cfg(all(not(target_env = "msvc"), target_os = "linux"))'.dependencies]
|
2024-04-20 01:15:51 -04:00
|
|
|
hardened_malloc-rs = { version = "0.1.2", optional = true, features = [
|
2024-04-10 16:43:57 -04:00
|
|
|
"static",
|
2024-04-20 00:13:21 -04:00
|
|
|
"gcc",
|
2024-04-10 16:43:57 -04:00
|
|
|
"light",
|
|
|
|
], default-features = false }
|
|
|
|
#hardened_malloc-rs = { optional = true, features = ["static","clang","light"], path = "../hardened_malloc-rs", default-features = false }
|
2024-04-10 01:53:31 -04:00
|
|
|
|
2023-07-26 13:24:44 -07:00
|
|
|
|
2024-04-25 09:07:59 -07:00
|
|
|
# backport of [https://github.com/tokio-rs/tracing/pull/2956] to the 0.1.x branch of tracing.
|
|
|
|
# we can switch back to upstream if #2956 is merged and backported in the upstream repo.
|
|
|
|
[patch.crates-io.tracing-subscriber]
|
2024-04-26 14:56:02 -04:00
|
|
|
git = "https://github.com/girlbossceo/tracing"
|
2024-04-25 09:07:59 -07:00
|
|
|
branch = "tracing-subscriber/env-filter-clone-0.1.x-backport"
|
|
|
|
[patch.crates-io.tracing]
|
2024-04-26 14:56:02 -04:00
|
|
|
git = "https://github.com/girlbossceo/tracing"
|
2024-04-25 09:07:59 -07:00
|
|
|
branch = "tracing-subscriber/env-filter-clone-0.1.x-backport"
|
|
|
|
[patch.crates-io.tracing-core]
|
2024-04-26 14:56:02 -04:00
|
|
|
git = "https://github.com/girlbossceo/tracing"
|
2024-04-25 09:07:59 -07:00
|
|
|
branch = "tracing-subscriber/env-filter-clone-0.1.x-backport"
|
|
|
|
|
2020-07-25 23:08:00 -04:00
|
|
|
[features]
|
2024-04-05 17:54:38 -04:00
|
|
|
default = [
|
|
|
|
"backend_rocksdb",
|
|
|
|
"systemd",
|
|
|
|
"element_hacks",
|
|
|
|
"sentry_telemetry",
|
|
|
|
"gzip_compression",
|
|
|
|
"brotli_compression",
|
2024-04-07 13:02:15 -04:00
|
|
|
"zstd_compression",
|
2024-04-24 01:15:49 -04:00
|
|
|
"release_max_log_level",
|
2024-05-03 18:07:52 -04:00
|
|
|
"io_uring",
|
2024-04-05 17:54:38 -04:00
|
|
|
]
|
2021-07-14 07:07:08 +00:00
|
|
|
backend_sqlite = ["sqlite"]
|
2024-03-09 16:59:28 -05:00
|
|
|
backend_rocksdb = ["rocksdb"]
|
2024-05-03 10:53:11 -04:00
|
|
|
rocksdb = ["dep:rust-rocksdb"]
|
2024-04-28 01:31:24 -04:00
|
|
|
jemalloc = [
|
2024-05-03 10:53:11 -04:00
|
|
|
"dep:tikv-jemalloc-sys",
|
|
|
|
"dep:tikv-jemalloc-ctl",
|
|
|
|
"dep:tikv-jemallocator",
|
2024-04-28 01:31:24 -04:00
|
|
|
"rust-rocksdb/jemalloc",
|
|
|
|
]
|
2024-04-27 04:50:20 -07:00
|
|
|
jemalloc_prof = ["tikv-jemalloc-sys/profiling"]
|
2024-05-03 10:53:11 -04:00
|
|
|
sqlite = ["dep:rusqlite", "dep:parking_lot", "dep:thread_local"]
|
|
|
|
systemd = ["dep:sd-notify"]
|
|
|
|
sentry_telemetry = ["dep:sentry", "dep:sentry-tracing", "dep:sentry-tower"]
|
2024-03-09 15:49:51 -05:00
|
|
|
|
2024-03-29 23:16:55 -04:00
|
|
|
gzip_compression = ["tower-http/compression-gzip", "reqwest/gzip"]
|
2024-03-09 15:49:51 -05:00
|
|
|
zstd_compression = ["tower-http/compression-zstd"]
|
2024-03-29 23:16:55 -04:00
|
|
|
brotli_compression = ["tower-http/compression-br", "reqwest/brotli"]
|
2024-03-09 15:49:51 -05:00
|
|
|
|
2024-05-03 10:53:11 -04:00
|
|
|
sha256_media = ["dep:sha2"]
|
2024-03-09 15:49:51 -05:00
|
|
|
io_uring = ["rust-rocksdb/io-uring"]
|
2024-05-03 10:53:11 -04:00
|
|
|
axum_dual_protocol = ["dep:axum-server-dual-protocol"]
|
2020-07-25 23:08:00 -04:00
|
|
|
|
2024-03-22 21:50:51 -04:00
|
|
|
perf_measurements = [
|
2024-05-03 10:53:11 -04:00
|
|
|
"dep:opentelemetry",
|
|
|
|
"dep:tracing-flame",
|
|
|
|
"dep:tracing-opentelemetry",
|
|
|
|
"dep:opentelemetry_sdk",
|
|
|
|
"dep:opentelemetry-jaeger",
|
2024-03-22 21:50:51 -04:00
|
|
|
]
|
2024-03-09 15:49:51 -05:00
|
|
|
|
2024-04-25 09:07:59 -07:00
|
|
|
# enable the tokio_console server
|
|
|
|
# incompatible with release_max_log_level
|
2024-05-03 10:53:11 -04:00
|
|
|
tokio_console = ["dep:console-subscriber", "tokio/tracing"]
|
2024-04-25 09:07:59 -07:00
|
|
|
|
2024-04-29 13:56:04 -07:00
|
|
|
hot_reload = ["dep:hot-lib-reloader"]
|
2024-04-22 22:36:11 -04:00
|
|
|
|
2024-05-03 10:53:11 -04:00
|
|
|
hardened_malloc = ["dep:hardened_malloc-rs"]
|
2024-04-10 01:53:31 -04:00
|
|
|
|
2024-04-24 01:15:49 -04:00
|
|
|
# increases performance, reduces build times, and reduces binary size by not compiling or
|
|
|
|
# genreating code for log level filters that users will generally not use (debug and trace) only in release builds
|
|
|
|
#
|
|
|
|
# the expense is obviously losing those log level filters for usage at runtime. debug builds will still have all log levels
|
|
|
|
release_max_log_level = [
|
|
|
|
"tracing/max_level_trace",
|
|
|
|
"tracing/release_max_level_info",
|
|
|
|
"log/max_level_trace",
|
|
|
|
"log/release_max_level_info",
|
|
|
|
]
|
|
|
|
|
2024-04-23 11:15:29 -07:00
|
|
|
# developer feature useful only in debug builds.
|
2024-04-25 00:09:50 -04:00
|
|
|
dev_release_log_level = []
|
2024-04-23 11:15:29 -07:00
|
|
|
|
2024-03-23 23:13:40 -04:00
|
|
|
# client/server interopability hacks
|
|
|
|
#
|
|
|
|
## element has various non-spec compliant behaviour
|
|
|
|
element_hacks = []
|
|
|
|
|
2024-03-09 15:49:51 -05:00
|
|
|
|
2020-05-31 22:49:07 +02:00
|
|
|
[package.metadata.deb]
|
2024-04-25 00:09:50 -04:00
|
|
|
name = "conduwuit"
|
2024-01-29 20:28:43 -05:00
|
|
|
maintainer = "strawberry <strawberry@puppygock.gay>"
|
2024-04-25 00:09:50 -04:00
|
|
|
copyright = "2024, strawberry <strawberry@puppygock.gay>"
|
2020-05-31 22:49:07 +02:00
|
|
|
license-file = ["LICENSE", "3"]
|
|
|
|
depends = "$auto, ca-certificates"
|
|
|
|
extended-description = """\
|
2024-04-24 15:24:26 -04:00
|
|
|
a cool hard fork of Conduit, a Matrix homeserver written in Rust"""
|
2020-05-31 22:49:07 +02:00
|
|
|
section = "net"
|
|
|
|
priority = "optional"
|
|
|
|
assets = [
|
2024-03-22 21:50:51 -04:00
|
|
|
[
|
|
|
|
"debian/README.md",
|
2024-04-25 00:09:50 -04:00
|
|
|
"usr/share/doc/conduwuit/README.Debian",
|
2024-03-22 21:50:51 -04:00
|
|
|
"644",
|
|
|
|
],
|
|
|
|
[
|
|
|
|
"README.md",
|
2024-04-25 00:09:50 -04:00
|
|
|
"usr/share/doc/conduwuit/",
|
2024-03-22 21:50:51 -04:00
|
|
|
"644",
|
|
|
|
],
|
|
|
|
[
|
2024-05-13 22:14:38 -04:00
|
|
|
"target/release/conduwuit",
|
2024-04-25 00:09:50 -04:00
|
|
|
"usr/sbin/conduwuit",
|
2024-03-22 21:50:51 -04:00
|
|
|
"755",
|
|
|
|
],
|
|
|
|
[
|
|
|
|
"conduwuit-example.toml",
|
2024-04-25 00:09:50 -04:00
|
|
|
"etc/conduwuit/conduwuit.toml",
|
2024-03-22 21:50:51 -04:00
|
|
|
"640",
|
|
|
|
],
|
2020-05-31 22:49:07 +02:00
|
|
|
]
|
2024-04-25 00:09:50 -04:00
|
|
|
conf-files = ["/etc/conduwuit/conduwuit.toml"]
|
2020-05-31 22:49:07 +02:00
|
|
|
maintainer-scripts = "debian/"
|
2024-05-15 11:45:35 -04:00
|
|
|
systemd-units = { unit-name = "conduwuit", start = false }
|
2021-05-12 20:04:28 +02:00
|
|
|
|
2024-03-09 15:49:51 -05:00
|
|
|
|
2021-08-13 17:20:40 +02:00
|
|
|
[profile.dev]
|
2024-05-03 12:06:49 -04:00
|
|
|
#debug = 0
|
2021-11-21 17:34:08 +00:00
|
|
|
lto = 'off'
|
2024-03-10 20:31:45 -04:00
|
|
|
codegen-units = 512
|
2021-08-13 17:20:40 +02:00
|
|
|
incremental = true
|
2024-05-03 12:06:49 -04:00
|
|
|
overflow-checks = true
|
2024-04-28 19:55:53 -04:00
|
|
|
#panic = "abort"
|
|
|
|
|
2024-03-02 16:45:13 -05:00
|
|
|
# seems to speed up continuous debug compilations
|
2024-03-10 20:31:45 -04:00
|
|
|
[profile.dev.build-override]
|
|
|
|
opt-level = 3
|
|
|
|
[profile.dev.package."*"] # external dependencies
|
2024-03-02 16:45:13 -05:00
|
|
|
opt-level = 1
|
2024-03-10 20:31:45 -04:00
|
|
|
[profile.dev.package."tokio"]
|
2024-03-02 16:45:13 -05:00
|
|
|
opt-level = 3
|
2021-08-13 17:20:40 +02:00
|
|
|
|
2024-01-16 19:49:44 -05:00
|
|
|
# default release profile
|
2021-08-13 17:20:40 +02:00
|
|
|
[profile.release]
|
2024-01-16 19:49:44 -05:00
|
|
|
lto = 'thin'
|
2023-08-05 13:30:52 -10:00
|
|
|
incremental = false
|
|
|
|
opt-level = 3
|
|
|
|
strip = "symbols"
|
2024-03-10 20:32:00 -04:00
|
|
|
control-flow-guard = true # Windows only
|
2023-12-03 01:00:23 -05:00
|
|
|
debug = 0
|
2024-01-16 19:49:44 -05:00
|
|
|
|
2024-04-19 23:47:14 -04:00
|
|
|
# release profile with debug symbols
|
|
|
|
[profile.release-debuginfo]
|
|
|
|
inherits = "release"
|
|
|
|
strip = "none"
|
2024-04-20 01:15:51 -04:00
|
|
|
debug = "full"
|
2024-04-19 23:47:14 -04:00
|
|
|
|
|
|
|
|
2024-01-16 19:49:44 -05:00
|
|
|
# high performance release profile which uses fat LTO across all crates, 1 codegen unit, max opt-level, and optimises across all crates
|
|
|
|
[profile.release-high-perf]
|
|
|
|
inherits = "release"
|
|
|
|
lto = 'fat'
|
|
|
|
codegen-units = 1
|
2024-04-02 00:01:55 -04:00
|
|
|
panic = "abort"
|
2021-08-13 17:20:40 +02:00
|
|
|
|
|
|
|
# For releases also try to max optimizations for dependencies:
|
2024-01-16 19:49:44 -05:00
|
|
|
[profile.release-high-perf.build-override]
|
2023-12-03 01:00:23 -05:00
|
|
|
debug = 0
|
2021-08-13 17:20:40 +02:00
|
|
|
opt-level = 3
|
2024-01-16 19:49:44 -05:00
|
|
|
codegen-units = 1
|
|
|
|
|
|
|
|
[profile.release-high-perf.package."*"]
|
2023-12-03 01:00:23 -05:00
|
|
|
debug = 0
|
2021-08-13 17:20:40 +02:00
|
|
|
opt-level = 3
|
2024-01-16 19:49:44 -05:00
|
|
|
codegen-units = 1
|
2024-01-13 14:29:18 -05:00
|
|
|
|
2024-03-09 15:49:51 -05:00
|
|
|
|
2024-01-13 14:29:18 -05:00
|
|
|
[lints]
|
|
|
|
workspace = true
|
|
|
|
|
|
|
|
[workspace.lints.rust]
|
2024-01-14 22:39:08 -05:00
|
|
|
missing_abi = "warn"
|
|
|
|
noop_method_call = "warn"
|
|
|
|
pointer_structural_match = "warn"
|
2024-01-26 19:15:21 -05:00
|
|
|
explicit_outlives_requirements = "warn"
|
2024-01-14 22:39:08 -05:00
|
|
|
unused_extern_crates = "warn"
|
|
|
|
unused_import_braces = "warn"
|
2024-02-28 12:40:41 -05:00
|
|
|
unused_lifetimes = "warn"
|
2024-01-13 14:29:18 -05:00
|
|
|
unused_qualifications = "warn"
|
2024-03-02 17:17:27 -05:00
|
|
|
unused_macro_rules = "warn"
|
2024-01-16 20:26:42 -05:00
|
|
|
dead_code = "warn"
|
2024-03-02 17:17:27 -05:00
|
|
|
elided_lifetimes_in_paths = "warn"
|
|
|
|
macro_use_extern_crate = "warn"
|
|
|
|
single_use_lifetimes = "warn"
|
|
|
|
unsafe_op_in_unsafe_fn = "warn"
|
2024-04-22 23:48:57 -04:00
|
|
|
unreachable_pub = "warn"
|
2024-01-13 14:29:18 -05:00
|
|
|
|
2024-03-05 23:51:45 -05:00
|
|
|
# this seems to suggest broken code and is not working correctly
|
|
|
|
unused_braces = "allow"
|
|
|
|
|
2024-03-23 14:38:15 -04:00
|
|
|
# some sadness
|
|
|
|
missing_docs = "allow"
|
|
|
|
|
|
|
|
|
2024-01-13 14:29:18 -05:00
|
|
|
[workspace.lints.clippy]
|
2024-03-22 22:44:31 -04:00
|
|
|
# pedantic = "warn"
|
2024-03-02 17:17:27 -05:00
|
|
|
|
2024-01-13 15:18:12 -05:00
|
|
|
suspicious = "warn" # assume deny in practice
|
2024-03-22 21:50:51 -04:00
|
|
|
perf = "warn" # assume deny in practice
|
2024-03-02 17:17:27 -05:00
|
|
|
|
2024-01-14 22:39:08 -05:00
|
|
|
redundant_clone = "warn"
|
|
|
|
cloned_instead_of_copied = "warn"
|
2024-01-13 14:29:18 -05:00
|
|
|
expl_impl_clone_on_copy = "warn"
|
2024-01-14 22:39:08 -05:00
|
|
|
unnecessary_cast = "warn"
|
|
|
|
cast_lossless = "warn"
|
|
|
|
ptr_as_ptr = "warn"
|
2024-01-16 20:26:42 -05:00
|
|
|
mut_mut = "warn"
|
2024-01-14 22:39:08 -05:00
|
|
|
char_lit_as_u8 = "warn"
|
2024-01-13 14:29:18 -05:00
|
|
|
dbg_macro = "warn"
|
2024-01-14 22:39:08 -05:00
|
|
|
empty_structs_with_brackets = "warn"
|
2024-01-15 01:48:40 -05:00
|
|
|
get_unwrap = "warn"
|
2024-01-14 22:39:08 -05:00
|
|
|
negative_feature_names = "warn"
|
|
|
|
pub_without_shorthand = "warn"
|
2024-01-13 14:29:18 -05:00
|
|
|
rc_buffer = "warn"
|
|
|
|
rc_mutex = "warn"
|
2024-01-14 22:39:08 -05:00
|
|
|
redundant_feature_names = "warn"
|
|
|
|
redundant_type_annotations = "warn"
|
|
|
|
rest_pat_in_fully_bound_structs = "warn"
|
|
|
|
str_to_string = "warn"
|
2024-01-15 01:48:40 -05:00
|
|
|
string_to_string = "warn"
|
2024-01-13 14:29:18 -05:00
|
|
|
tests_outside_test_module = "warn"
|
|
|
|
undocumented_unsafe_blocks = "warn"
|
2024-01-14 22:39:08 -05:00
|
|
|
unneeded_field_pattern = "warn"
|
|
|
|
unseparated_literal_suffix = "warn"
|
2024-01-15 01:48:40 -05:00
|
|
|
wildcard_dependencies = "warn"
|
2024-03-02 17:09:10 -05:00
|
|
|
or_fun_call = "warn"
|
2024-01-15 02:01:56 -05:00
|
|
|
unnecessary_lazy_evaluations = "warn"
|
2024-03-18 20:26:32 -04:00
|
|
|
assertions_on_result_states = "warn"
|
2024-03-02 17:17:27 -05:00
|
|
|
default_union_representation = "warn"
|
|
|
|
deref_by_slicing = "warn"
|
|
|
|
empty_drop = "warn"
|
|
|
|
exit = "warn"
|
|
|
|
filetype_is_file = "warn"
|
|
|
|
float_cmp_const = "warn"
|
2024-03-02 17:33:46 -05:00
|
|
|
format_push_string = "warn"
|
2024-03-02 17:17:27 -05:00
|
|
|
impl_trait_in_params = "warn"
|
|
|
|
lossy_float_literal = "warn"
|
|
|
|
mem_forget = "warn"
|
2024-03-02 18:14:45 -05:00
|
|
|
missing_assert_message = "warn"
|
2024-03-02 17:17:27 -05:00
|
|
|
mutex_atomic = "warn"
|
2024-03-02 20:55:02 -05:00
|
|
|
semicolon_outside_block = "warn"
|
|
|
|
fn_to_numeric_cast = "warn"
|
|
|
|
fn_to_numeric_cast_with_truncation = "warn"
|
2024-03-02 17:17:27 -05:00
|
|
|
string_lit_chars_any = "warn"
|
|
|
|
suspicious_xor_used_as_pow = "warn"
|
|
|
|
try_err = "warn"
|
|
|
|
unnecessary_safety_comment = "warn"
|
|
|
|
unnecessary_safety_doc = "warn"
|
|
|
|
unnecessary_self_imports = "warn"
|
|
|
|
verbose_file_reads = "warn"
|
2024-03-02 20:55:02 -05:00
|
|
|
cast_possible_wrap = "warn"
|
|
|
|
redundant_closure_for_method_calls = "warn"
|
2024-03-08 11:48:52 -05:00
|
|
|
large_futures = "warn"
|
2024-03-22 21:50:51 -04:00
|
|
|
semicolon_if_nothing_returned = "warn"
|
2024-03-22 21:55:05 -04:00
|
|
|
match_bool = "warn"
|
2024-03-22 22:44:31 -04:00
|
|
|
struct_excessive_bools = "warn"
|
|
|
|
must_use_candidate = "warn"
|
|
|
|
collapsible_else_if = "warn"
|
|
|
|
inconsistent_struct_constructor = "warn"
|
|
|
|
manual_string_new = "warn"
|
|
|
|
zero_sized_map_values = "warn"
|
|
|
|
unnecessary_box_returns = "warn"
|
|
|
|
map_unwrap_or = "warn"
|
|
|
|
implicit_clone = "warn"
|
|
|
|
match_wildcard_for_single_variants = "warn"
|
|
|
|
unnecessary_wraps = "warn"
|
|
|
|
match_same_arms = "warn"
|
|
|
|
ignored_unit_patterns = "warn"
|
|
|
|
redundant_else = "warn"
|
2024-03-23 14:38:15 -04:00
|
|
|
explicit_into_iter_loop = "warn"
|
|
|
|
used_underscore_binding = "warn"
|
|
|
|
needless_pass_by_value = "warn"
|
|
|
|
too_many_lines = "warn"
|
|
|
|
let_underscore_untyped = "warn"
|
2024-03-27 20:06:56 -04:00
|
|
|
single_match = "warn"
|
|
|
|
single_match_else = "warn"
|
2024-03-29 16:24:46 -04:00
|
|
|
explicit_deref_methods = "warn"
|
|
|
|
explicit_iter_loop = "warn"
|
2024-04-01 23:30:57 -04:00
|
|
|
manual_let_else = "warn"
|
2024-04-03 14:09:44 -04:00
|
|
|
trivially_copy_pass_by_ref = "warn"
|
2024-04-04 23:21:04 -04:00
|
|
|
wildcard_imports = "warn"
|
|
|
|
checked_conversions = "warn"
|
2024-05-03 21:42:47 -04:00
|
|
|
#integer_arithmetic = "warn"
|
2024-05-04 09:45:37 -04:00
|
|
|
#as_conversions = "warn"
|
2024-03-23 14:38:15 -04:00
|
|
|
|
|
|
|
# some sadness
|
|
|
|
missing_errors_doc = "allow"
|
|
|
|
missing_panics_doc = "allow"
|
|
|
|
module_name_repetitions = "allow"
|
|
|
|
if_not_else = "allow"
|
|
|
|
doc_markdown = "allow"
|
|
|
|
cast_possible_truncation = "allow"
|
|
|
|
cast_precision_loss = "allow"
|
|
|
|
cast_sign_loss = "allow"
|
|
|
|
same_name_method = "allow"
|
|
|
|
mod_module_files = "allow"
|
|
|
|
unwrap_used = "allow"
|
|
|
|
expect_used = "allow"
|
|
|
|
if_then_some_else_none = "allow"
|
|
|
|
let_underscore_must_use = "allow"
|
|
|
|
map_err_ignore = "allow"
|
|
|
|
missing_docs_in_private_items = "allow"
|
|
|
|
multiple_inherent_impl = "allow"
|
|
|
|
error_impl_error = "allow"
|
|
|
|
string_add = "allow"
|
|
|
|
string_slice = "allow"
|
|
|
|
ref_patterns = "allow"
|