2020-02-15 21:42:21 +00:00
|
|
|
[package]
|
2024-01-27 21:41:27 +00:00
|
|
|
name = "conduit"
|
2023-11-30 02:37:12 +00:00
|
|
|
description = "a cool fork of Conduit, a Matrix homeserver written in Rust"
|
2020-08-24 09:32:15 +00:00
|
|
|
license = "Apache-2.0"
|
2024-03-23 01:50:51 +00:00
|
|
|
authors = [
|
|
|
|
"strawberry <strawberry@puppygock.gay>",
|
|
|
|
"timokoesters <timo@koesters.xyz>",
|
|
|
|
]
|
2023-11-30 02:37:12 +00:00
|
|
|
homepage = "https://puppygock.gay/conduwuit"
|
|
|
|
repository = "https://gitlab.com/girlbossceo/conduwuit"
|
2020-04-10 05:53:20 +00:00
|
|
|
readme = "README.md"
|
2024-03-31 19:43:39 +00:00
|
|
|
version = "0.7.0+conduwuit-0.1.12"
|
2022-01-20 11:29:52 +00:00
|
|
|
edition = "2021"
|
2020-02-15 21:42:21 +00:00
|
|
|
|
2024-01-26 04:39:59 +00:00
|
|
|
# See also `rust-toolchain.toml`
|
2024-01-17 18:15:37 +00:00
|
|
|
rust-version = "1.75.0"
|
2022-12-23 08:20:05 +00:00
|
|
|
|
2020-02-15 21:42:21 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2020-08-25 09:49:51 +00:00
|
|
|
# Used for secure identifiers
|
2023-05-21 11:42:59 +00:00
|
|
|
rand = "0.8.5"
|
2024-03-09 20:49:51 +00:00
|
|
|
|
2020-08-25 09:49:51 +00:00
|
|
|
# Used for conduit::Error type
|
2024-03-13 02:22:28 +00:00
|
|
|
thiserror = "1.0.58"
|
2024-03-09 20:49:51 +00:00
|
|
|
|
2020-08-25 09:49:51 +00:00
|
|
|
# Used to encode server public key
|
2024-03-02 16:00:10 +00:00
|
|
|
base64 = "0.22.0"
|
2024-03-09 20:49:51 +00:00
|
|
|
|
2020-08-25 09:49:51 +00:00
|
|
|
# Used when hashing the state
|
2024-02-18 01:24:14 +00:00
|
|
|
ring = "0.17.8"
|
2024-03-09 20:49:51 +00:00
|
|
|
|
2020-09-23 10:03:08 +00:00
|
|
|
# Used when querying the SRV record of other servers
|
2024-03-19 23:12:49 +00:00
|
|
|
hickory-resolver = "0.24.0"
|
2024-03-09 20:49:51 +00:00
|
|
|
|
2020-12-23 18:41:54 +00:00
|
|
|
# Used to find matching events for appservices
|
2024-03-23 02:46:31 +00:00
|
|
|
regex = "1.10.4"
|
2024-03-09 20:49:51 +00:00
|
|
|
|
2024-02-09 00:11:48 +00:00
|
|
|
# Used to load forbidden room/user regex from config
|
|
|
|
serde_regex = "1.1.0"
|
|
|
|
itertools = "0.12.1"
|
2024-03-09 20:49:51 +00:00
|
|
|
|
2021-02-07 16:38:45 +00:00
|
|
|
# jwt jsonwebtokens
|
2024-03-21 22:41:26 +00:00
|
|
|
jsonwebtoken = "9.3.0"
|
2024-03-09 20:49:51 +00:00
|
|
|
|
2021-06-30 07:52:01 +00:00
|
|
|
lru-cache = "0.1.2"
|
2024-03-09 20:49:51 +00:00
|
|
|
|
2023-02-26 15:29:06 +00:00
|
|
|
# Used for ruma wrapper
|
2024-03-28 22:24:29 +00:00
|
|
|
serde_html_form = "0.2.6"
|
2022-01-19 06:09:25 +00:00
|
|
|
|
2021-10-01 22:37:39 +00:00
|
|
|
# used for TURN server authentication
|
2022-10-09 13:34:36 +00:00
|
|
|
hmac = "0.12.1"
|
2023-05-21 11:42:59 +00:00
|
|
|
sha-1 = "0.10.1"
|
2020-07-26 03:08:00 +00:00
|
|
|
|
2024-03-24 16:53:32 +00:00
|
|
|
async-trait = "0.1.79"
|
2022-01-21 08:19:19 +00:00
|
|
|
|
2024-03-09 20:49:51 +00:00
|
|
|
# used for checking if an IP is in specific subnets / CIDR ranges easier
|
2024-01-22 03:59:06 +00:00
|
|
|
ipaddress = "0.1.3"
|
|
|
|
|
2024-02-24 22:25:43 +00:00
|
|
|
# to encode/decode percent URIs when conduwuit is running without a reverse proxy
|
2024-02-26 02:47:40 +00:00
|
|
|
#urlencoding = "2.1.3"
|
|
|
|
|
|
|
|
# to get the client IP address of requests
|
|
|
|
#axum-client-ip = "0.4.2"
|
2024-02-24 22:25:43 +00:00
|
|
|
|
2024-03-02 16:00:53 +00:00
|
|
|
# to parse user-friendly time durations in admin commands
|
|
|
|
cyborgtime = "2.1.1"
|
2024-02-11 16:49:31 +00:00
|
|
|
|
2024-03-09 20:49:51 +00:00
|
|
|
# all the web/HTTP dependencies
|
|
|
|
# Used for the http request / response body type for Ruma endpoints used with reqwest
|
2024-03-23 00:04:29 +00:00
|
|
|
bytes = "1.6.0"
|
2024-03-09 20:49:51 +00:00
|
|
|
http = "0.2.12"
|
|
|
|
|
2024-03-19 11:37:35 +00:00
|
|
|
# standard date and time tools
|
|
|
|
[dependencies.chrono]
|
2024-03-27 17:36:15 +00:00
|
|
|
version = "0.4.37"
|
2024-03-19 11:37:35 +00:00
|
|
|
features = ["alloc"]
|
|
|
|
default-features = false
|
|
|
|
|
2024-03-09 20:49:51 +00:00
|
|
|
# Web framework
|
|
|
|
[dependencies.axum]
|
|
|
|
version = "0.6.20"
|
|
|
|
default-features = false
|
|
|
|
features = ["form", "headers", "http1", "http2", "json", "matched-path"]
|
|
|
|
|
|
|
|
[dependencies.axum-server]
|
|
|
|
version = "0.5.1"
|
|
|
|
features = ["tls-rustls"]
|
|
|
|
|
|
|
|
[dependencies.tower]
|
|
|
|
version = "0.4.13"
|
|
|
|
features = ["util"]
|
|
|
|
|
|
|
|
[dependencies.tower-http]
|
|
|
|
version = "0.4.4"
|
2024-03-23 01:50:51 +00:00
|
|
|
features = ["add-extension", "cors", "sensitive-headers", "trace", "util"]
|
2024-03-09 20:49:51 +00:00
|
|
|
|
|
|
|
[dependencies.hyper]
|
|
|
|
version = "0.14"
|
2024-03-23 01:50:51 +00:00
|
|
|
features = ["server", "http1", "http2"]
|
2024-03-09 20:49:51 +00:00
|
|
|
|
|
|
|
[dependencies.reqwest]
|
2024-03-19 23:12:49 +00:00
|
|
|
version = "0.11.27"
|
2024-03-09 20:49:51 +00:00
|
|
|
default-features = false
|
2024-03-23 01:50:51 +00:00
|
|
|
features = ["rustls-tls-native-roots", "socks", "trust-dns"]
|
2024-03-09 20:49:51 +00:00
|
|
|
|
|
|
|
# all the serde stuff
|
|
|
|
# Used for pdu definition
|
|
|
|
[dependencies.serde]
|
|
|
|
version = "1.0.197"
|
|
|
|
features = ["rc"]
|
|
|
|
# Used for appservice registration files
|
|
|
|
[dependencies.serde_yaml]
|
2024-03-19 04:19:47 +00:00
|
|
|
version = "0.9.33"
|
2024-03-09 20:49:51 +00:00
|
|
|
# Used for ruma wrapper
|
|
|
|
[dependencies.serde_json]
|
2024-03-26 08:00:41 +00:00
|
|
|
version = "1.0.115"
|
2024-03-09 20:49:51 +00:00
|
|
|
features = ["raw_value"]
|
|
|
|
|
|
|
|
|
|
|
|
# Used for password hashing
|
|
|
|
[dependencies.argon2]
|
|
|
|
version = "0.5.3"
|
2024-03-23 01:50:51 +00:00
|
|
|
features = ["alloc", "rand"]
|
2024-03-09 20:49:51 +00: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 20:49:51 +00:00
|
|
|
default-features = false
|
2024-03-23 01:50:51 +00:00
|
|
|
features = ["jpeg", "png", "gif", "webp"]
|
2024-03-09 20:49:51 +00:00
|
|
|
|
|
|
|
# logging
|
2024-03-29 06:08:35 +00:00
|
|
|
[dependencies.log]
|
|
|
|
version = "0.4.21"
|
|
|
|
default-features = false
|
|
|
|
features = ["max_level_trace", "release_max_level_info"]
|
2024-03-09 20:49:51 +00:00
|
|
|
[dependencies.tracing]
|
|
|
|
version = "0.1.40"
|
|
|
|
default-features = false
|
2024-03-23 00:17:38 +00:00
|
|
|
features = ["max_level_trace", "release_max_level_info"]
|
2024-03-09 20:49:51 +00:00
|
|
|
[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 21:59:28 +00:00
|
|
|
version = "0.22.0"
|
2024-03-09 20:49:51 +00: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 22:21:17 +00:00
|
|
|
# optional sentry metrics for crash/panic reporting
|
|
|
|
[dependencies.sentry]
|
|
|
|
version = "0.32.2"
|
|
|
|
optional = true
|
2024-03-29 23:08:16 +00:00
|
|
|
default-features = false
|
2024-03-29 23:59:02 +00:00
|
|
|
features = ["backtrace", "contexts", "debug-images", "panic", "rustls", "tower", "tower-http", "tracing", "reqwest", "log"]
|
2024-03-29 23:08:16 +00:00
|
|
|
[dependencies.sentry-tracing]
|
|
|
|
version = "0.32.2"
|
|
|
|
optional = true
|
2024-03-30 03:16:55 +00:00
|
|
|
[dependencies.sentry-tower]
|
|
|
|
version = "0.32.2"
|
|
|
|
optional = true
|
2024-03-29 22:21:17 +00:00
|
|
|
|
2024-03-09 20:49:51 +00:00
|
|
|
# optional jemalloc usage
|
|
|
|
[dependencies.tikv-jemallocator]
|
|
|
|
version = "0.5.4"
|
|
|
|
optional = true
|
2024-03-10 05:15:14 +00:00
|
|
|
default-features = false
|
2024-03-09 20:49:51 +00:00
|
|
|
features = ["unprefixed_malloc_on_supported_platforms"]
|
|
|
|
[dependencies.tikv-jemalloc-ctl]
|
|
|
|
version = "0.5.4"
|
|
|
|
optional = true
|
2024-03-10 05:15:14 +00:00
|
|
|
default-features = false
|
2024-03-09 20:49:51 +00:00
|
|
|
features = ["use_std"]
|
|
|
|
|
|
|
|
# for URL previews
|
|
|
|
[dependencies.webpage]
|
|
|
|
version = "2.0"
|
|
|
|
default-features = false
|
|
|
|
|
|
|
|
# to support multiple variations of setting a config option
|
|
|
|
[dependencies.either]
|
|
|
|
version = "1.10.0"
|
|
|
|
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]
|
|
|
|
version = "0.5.2"
|
|
|
|
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 20:49:51 +00:00
|
|
|
default-features = false
|
2024-03-23 01:50:51 +00:00
|
|
|
features = ["std", "derive", "help", "usage", "error-context", "string"]
|
2024-03-09 20:49:51 +00:00
|
|
|
|
|
|
|
[dependencies.futures-util]
|
|
|
|
version = "0.3.30"
|
|
|
|
default-features = false
|
|
|
|
|
|
|
|
# Used for reading the configuration from conduit.toml & environment variables
|
|
|
|
[dependencies.figment]
|
2024-03-16 04:11:46 +00:00
|
|
|
version = "0.10.15"
|
2024-03-23 01:50:51 +00:00
|
|
|
features = ["env", "toml"]
|
2024-03-09 20:49:51 +00:00
|
|
|
|
|
|
|
# Used for matrix spec type definitions and helpers
|
|
|
|
#ruma = { version = "0.4.0", features = ["compat", "rand", "appservice-api-c", "client-api", "federation-api", "push-gateway-api-c", "state-res", "unstable-pre-spec", "unstable-exhaustive-types"] }
|
|
|
|
#ruma = { git = "https://github.com/ruma/ruma", rev = "4d9f754657a099df8e61533787b8eebd12946435", features = ["compat", "rand", "appservice-api-c", "client-api", "federation-api", "push-gateway-api-c", "state-res", "unstable-msc2448", "unstable-msc3575", "unstable-exhaustive-types", "ring-compat", "unstable-unspecified", "unstable-msc2870", "unstable-msc3061", "unstable-msc2867", "unstable-extensible-events"] }
|
|
|
|
#ruma = { path = "../ruma/crates/ruma", features = ["compat", "rand", "appservice-api-c", "client-api", "federation-api", "push-gateway-api-c", "state-res", "unstable-msc2448", "unstable-msc3575", "unstable-exhaustive-types", "ring-compat", "unstable-unspecified" ] }
|
|
|
|
[dependencies.ruma]
|
|
|
|
git = "https://github.com/girlbossceo/ruma"
|
2024-03-27 17:36:15 +00:00
|
|
|
#rev = "c988b5ff158ede9c10aeffc76ad5e31604f19ddb"
|
|
|
|
branch = "conduwuit-changes"
|
2024-03-09 20:49:51 +00:00
|
|
|
features = [
|
2024-03-23 01:50:51 +00:00
|
|
|
"compat",
|
|
|
|
"rand",
|
|
|
|
"appservice-api-c",
|
|
|
|
"client-api",
|
|
|
|
"federation-api",
|
|
|
|
"push-gateway-api-c",
|
|
|
|
"state-res",
|
|
|
|
"unstable-msc2448",
|
|
|
|
"unstable-msc3575",
|
|
|
|
"unstable-exhaustive-types",
|
|
|
|
"ring-compat",
|
|
|
|
"unstable-unspecified",
|
|
|
|
"unstable-msc2870",
|
|
|
|
"unstable-msc3061",
|
|
|
|
"unstable-msc2867",
|
|
|
|
"unstable-extensible-events",
|
2024-03-09 20:49:51 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[dependencies.rust-rocksdb]
|
|
|
|
git = "https://github.com/zaidoon1/rust-rocksdb"
|
2024-03-28 23:29:51 +00:00
|
|
|
branch = "master"
|
|
|
|
#rev = "60f783b06b49d2f6fcf1d3dda66c7194e49095d4"
|
2024-03-09 20:49:51 +00:00
|
|
|
optional = true
|
2024-03-09 21:59:28 +00:00
|
|
|
default-features = true
|
2024-03-28 23:29:51 +00:00
|
|
|
features = ["multi-threaded-cf", "zstd"]
|
2024-03-09 20:49:51 +00:00
|
|
|
|
|
|
|
[dependencies.rusqlite]
|
|
|
|
git = "https://github.com/rusqlite/rusqlite"
|
2024-03-27 01:47:59 +00:00
|
|
|
#branch = "master"
|
|
|
|
rev = "e00b626e2b1c67347d789fb7f600281705c89381"
|
2024-03-09 20:49:51 +00:00
|
|
|
optional = true
|
|
|
|
features = ["bundled"]
|
|
|
|
|
|
|
|
# used only by rusqlite
|
|
|
|
[dependencies.parking_lot]
|
|
|
|
version = "0.12.1"
|
|
|
|
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"
|
|
|
|
optional = true
|
|
|
|
|
2024-03-09 23:05:11 +00:00
|
|
|
[dependencies.tokio]
|
2024-03-28 16:56:10 +00:00
|
|
|
version = "1.37.0"
|
2024-03-23 01:50:51 +00:00
|
|
|
features = ["fs", "macros", "sync", "signal"]
|
2024-03-09 20:49:51 +00:00
|
|
|
|
|
|
|
# *nix-specific dependencies
|
2023-07-26 20:24:44 +00:00
|
|
|
[target.'cfg(unix)'.dependencies]
|
2024-02-24 20:32:01 +00:00
|
|
|
nix = { version = "0.28.0", features = ["resource"] }
|
2024-03-09 20:49:51 +00:00
|
|
|
sd-notify = { version = "0.4.1", optional = true } # systemd is only available/relevant on *nix platforms
|
2024-03-23 01:50:51 +00:00
|
|
|
hyperlocal = { git = "https://github.com/softprops/hyperlocal", rev = "2ee4d149644600d326559af0d2b235c945b05c04", features = [
|
|
|
|
"server",
|
|
|
|
] } # unix socket support
|
2024-03-09 20:49:51 +00:00
|
|
|
|
2023-07-26 20:24:44 +00:00
|
|
|
|
2020-07-26 03:08:00 +00:00
|
|
|
[features]
|
2024-03-31 19:39:29 +00:00
|
|
|
default = ["backend_rocksdb", "systemd", "element_hacks", "sentry_telemetry", "gzip_compression", "brotli_compression"]
|
2021-07-14 07:07:08 +00:00
|
|
|
backend_sqlite = ["sqlite"]
|
2024-03-09 21:59:28 +00:00
|
|
|
backend_rocksdb = ["rocksdb"]
|
|
|
|
rocksdb = ["rust-rocksdb", "num_cpus"]
|
2022-02-04 15:59:30 +00:00
|
|
|
jemalloc = ["tikv-jemalloc-ctl", "tikv-jemallocator"]
|
2024-03-09 20:49:51 +00:00
|
|
|
sqlite = ["rusqlite", "parking_lot", "thread_local", "num_cpus"]
|
2022-11-25 20:20:45 +00:00
|
|
|
systemd = ["sd-notify"]
|
2024-03-30 03:16:55 +00:00
|
|
|
sentry_telemetry = ["sentry", "sentry-tracing", "sentry-tower"]
|
2024-03-09 20:49:51 +00:00
|
|
|
|
2024-03-30 03:16:55 +00:00
|
|
|
gzip_compression = ["tower-http/compression-gzip", "reqwest/gzip"]
|
2024-03-09 20:49:51 +00:00
|
|
|
zstd_compression = ["tower-http/compression-zstd"]
|
2024-03-30 03:16:55 +00:00
|
|
|
brotli_compression = ["tower-http/compression-br", "reqwest/brotli"]
|
2024-03-09 20:49:51 +00:00
|
|
|
|
|
|
|
sha256_media = ["sha2"]
|
|
|
|
io_uring = ["rust-rocksdb/io-uring"]
|
2024-02-24 22:25:43 +00:00
|
|
|
axum_dual_protocol = ["axum-server-dual-protocol"]
|
2020-07-26 03:08:00 +00:00
|
|
|
|
2024-03-23 01:50:51 +00:00
|
|
|
perf_measurements = [
|
|
|
|
"opentelemetry",
|
|
|
|
"tracing-flame",
|
|
|
|
"tracing-opentelemetry",
|
|
|
|
"opentelemetry_sdk",
|
|
|
|
"opentelemetry-jaeger",
|
|
|
|
]
|
2024-03-09 20:49:51 +00:00
|
|
|
|
2024-03-24 03:13:40 +00:00
|
|
|
# client/server interopability hacks
|
|
|
|
#
|
|
|
|
## element has various non-spec compliant behaviour
|
|
|
|
element_hacks = []
|
|
|
|
|
2024-03-09 20:49:51 +00:00
|
|
|
|
2020-07-26 03:08:00 +00:00
|
|
|
[[bin]]
|
|
|
|
name = "conduit"
|
|
|
|
path = "src/main.rs"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "conduit"
|
|
|
|
path = "src/lib.rs"
|
2020-05-31 20:49:07 +00:00
|
|
|
|
|
|
|
[package.metadata.deb]
|
|
|
|
name = "matrix-conduit"
|
2024-01-30 01:28:43 +00:00
|
|
|
maintainer = "strawberry <strawberry@puppygock.gay>"
|
|
|
|
copyright = "2024, Timo Kösters <timo@koesters.xyz>"
|
2020-05-31 20:49:07 +00:00
|
|
|
license-file = ["LICENSE", "3"]
|
|
|
|
depends = "$auto, ca-certificates"
|
|
|
|
extended-description = """\
|
2024-01-30 01:28:43 +00:00
|
|
|
a cool fork of Conduit, a Matrix homeserver written in Rust"""
|
2020-05-31 20:49:07 +00:00
|
|
|
section = "net"
|
|
|
|
priority = "optional"
|
|
|
|
assets = [
|
2024-03-23 01:50:51 +00:00
|
|
|
[
|
|
|
|
"debian/README.md",
|
|
|
|
"usr/share/doc/matrix-conduit/README.Debian",
|
|
|
|
"644",
|
|
|
|
],
|
|
|
|
[
|
|
|
|
"README.md",
|
|
|
|
"usr/share/doc/matrix-conduit/",
|
|
|
|
"644",
|
|
|
|
],
|
|
|
|
[
|
|
|
|
"target/release/conduit",
|
|
|
|
"usr/sbin/matrix-conduit",
|
|
|
|
"755",
|
|
|
|
],
|
|
|
|
[
|
|
|
|
"conduwuit-example.toml",
|
|
|
|
"etc/matrix-conduit/conduit.toml",
|
|
|
|
"640",
|
|
|
|
],
|
2020-05-31 20:49:07 +00:00
|
|
|
]
|
2024-03-23 01:50:51 +00:00
|
|
|
conf-files = ["/etc/matrix-conduit/conduit.toml"]
|
2020-05-31 20:49:07 +00:00
|
|
|
maintainer-scripts = "debian/"
|
|
|
|
systemd-units = { unit-name = "matrix-conduit" }
|
2021-05-12 18:04:28 +00:00
|
|
|
|
2024-03-09 20:49:51 +00:00
|
|
|
|
2021-08-13 15:20:40 +00:00
|
|
|
[profile.dev]
|
2023-12-03 06:00:23 +00:00
|
|
|
debug = 0
|
2021-11-21 17:34:08 +00:00
|
|
|
lto = 'off'
|
2024-03-11 00:31:45 +00:00
|
|
|
codegen-units = 512
|
2021-08-13 15:20:40 +00:00
|
|
|
incremental = true
|
2024-03-02 21:45:13 +00:00
|
|
|
# seems to speed up continuous debug compilations
|
2024-03-11 00:31:45 +00:00
|
|
|
[profile.dev.build-override]
|
|
|
|
opt-level = 3
|
|
|
|
[profile.dev.package."*"] # external dependencies
|
2024-03-02 21:45:13 +00:00
|
|
|
opt-level = 1
|
2024-03-11 00:31:45 +00:00
|
|
|
[profile.dev.package."tokio"]
|
2024-03-02 21:45:13 +00:00
|
|
|
opt-level = 3
|
2021-08-13 15:20:40 +00:00
|
|
|
|
2024-01-17 00:49:44 +00:00
|
|
|
# default release profile
|
2021-08-13 15:20:40 +00:00
|
|
|
[profile.release]
|
2024-01-17 00:49:44 +00:00
|
|
|
lto = 'thin'
|
2023-08-05 23:30:52 +00:00
|
|
|
incremental = false
|
|
|
|
opt-level = 3
|
|
|
|
overflow-checks = true
|
|
|
|
strip = "symbols"
|
|
|
|
panic = "abort"
|
2024-03-11 00:32:00 +00:00
|
|
|
control-flow-guard = true # Windows only
|
2023-12-03 06:00:23 +00:00
|
|
|
debug = 0
|
2024-01-17 00:49:44 +00: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
|
2021-08-13 15:20:40 +00:00
|
|
|
|
|
|
|
# For releases also try to max optimizations for dependencies:
|
2024-01-17 00:49:44 +00:00
|
|
|
[profile.release-high-perf.build-override]
|
2023-12-03 06:00:23 +00:00
|
|
|
debug = 0
|
2021-08-13 15:20:40 +00:00
|
|
|
opt-level = 3
|
2024-01-17 00:49:44 +00:00
|
|
|
codegen-units = 1
|
|
|
|
|
|
|
|
[profile.release-high-perf.package."*"]
|
2023-12-03 06:00:23 +00:00
|
|
|
debug = 0
|
2021-08-13 15:20:40 +00:00
|
|
|
opt-level = 3
|
2024-01-17 00:49:44 +00:00
|
|
|
codegen-units = 1
|
2024-01-13 19:29:18 +00:00
|
|
|
|
2024-03-09 20:49:51 +00:00
|
|
|
|
2024-01-13 19:29:18 +00:00
|
|
|
[lints]
|
|
|
|
workspace = true
|
|
|
|
|
|
|
|
[workspace.lints.rust]
|
2024-01-15 03:39:08 +00:00
|
|
|
missing_abi = "warn"
|
|
|
|
noop_method_call = "warn"
|
|
|
|
pointer_structural_match = "warn"
|
2024-01-27 00:15:21 +00:00
|
|
|
explicit_outlives_requirements = "warn"
|
2024-01-15 03:39:08 +00:00
|
|
|
unused_extern_crates = "warn"
|
|
|
|
unused_import_braces = "warn"
|
2024-02-28 17:40:41 +00:00
|
|
|
unused_lifetimes = "warn"
|
2024-01-13 19:29:18 +00:00
|
|
|
unused_qualifications = "warn"
|
2024-03-02 22:17:27 +00:00
|
|
|
unused_macro_rules = "warn"
|
2024-01-17 01:26:42 +00:00
|
|
|
dead_code = "warn"
|
2024-03-02 22:17:27 +00:00
|
|
|
elided_lifetimes_in_paths = "warn"
|
|
|
|
macro_use_extern_crate = "warn"
|
|
|
|
single_use_lifetimes = "warn"
|
|
|
|
unsafe_op_in_unsafe_fn = "warn"
|
2024-01-13 19:29:18 +00:00
|
|
|
|
2024-03-02 23:14:45 +00:00
|
|
|
# not in rust 1.75.0 (doesn't break CI but won't check for it)
|
|
|
|
unit_bindings = "warn"
|
|
|
|
|
2024-03-06 04:51:45 +00:00
|
|
|
# this seems to suggest broken code and is not working correctly
|
|
|
|
unused_braces = "allow"
|
|
|
|
|
2024-03-23 18:38:15 +00:00
|
|
|
# some sadness
|
|
|
|
unreachable_pub = "allow"
|
|
|
|
missing_docs = "allow"
|
|
|
|
|
|
|
|
|
2024-01-13 19:29:18 +00:00
|
|
|
[workspace.lints.clippy]
|
2024-03-23 02:44:31 +00:00
|
|
|
# pedantic = "warn"
|
2024-03-02 22:17:27 +00:00
|
|
|
|
2024-01-13 20:18:12 +00:00
|
|
|
suspicious = "warn" # assume deny in practice
|
2024-03-23 01:50:51 +00:00
|
|
|
perf = "warn" # assume deny in practice
|
2024-03-02 22:17:27 +00:00
|
|
|
|
2024-01-15 03:39:08 +00:00
|
|
|
redundant_clone = "warn"
|
|
|
|
cloned_instead_of_copied = "warn"
|
2024-01-13 19:29:18 +00:00
|
|
|
expl_impl_clone_on_copy = "warn"
|
2024-01-15 03:39:08 +00:00
|
|
|
unnecessary_cast = "warn"
|
|
|
|
cast_lossless = "warn"
|
|
|
|
ptr_as_ptr = "warn"
|
2024-01-17 01:26:42 +00:00
|
|
|
mut_mut = "warn"
|
2024-01-15 03:39:08 +00:00
|
|
|
char_lit_as_u8 = "warn"
|
2024-01-13 19:29:18 +00:00
|
|
|
dbg_macro = "warn"
|
2024-01-15 03:39:08 +00:00
|
|
|
empty_structs_with_brackets = "warn"
|
2024-01-15 06:48:40 +00:00
|
|
|
get_unwrap = "warn"
|
2024-01-15 03:39:08 +00:00
|
|
|
negative_feature_names = "warn"
|
|
|
|
pub_without_shorthand = "warn"
|
2024-01-13 19:29:18 +00:00
|
|
|
rc_buffer = "warn"
|
|
|
|
rc_mutex = "warn"
|
2024-01-15 03:39:08 +00:00
|
|
|
redundant_feature_names = "warn"
|
|
|
|
redundant_type_annotations = "warn"
|
|
|
|
rest_pat_in_fully_bound_structs = "warn"
|
|
|
|
str_to_string = "warn"
|
2024-01-15 06:48:40 +00:00
|
|
|
string_to_string = "warn"
|
2024-01-13 19:29:18 +00:00
|
|
|
tests_outside_test_module = "warn"
|
|
|
|
undocumented_unsafe_blocks = "warn"
|
2024-01-15 03:39:08 +00:00
|
|
|
unneeded_field_pattern = "warn"
|
|
|
|
unseparated_literal_suffix = "warn"
|
2024-01-15 06:48:40 +00:00
|
|
|
wildcard_dependencies = "warn"
|
2024-03-02 22:09:10 +00:00
|
|
|
or_fun_call = "warn"
|
2024-01-15 07:01:56 +00:00
|
|
|
unnecessary_lazy_evaluations = "warn"
|
2024-03-19 00:26:32 +00:00
|
|
|
assertions_on_result_states = "warn"
|
2024-03-02 22:17:27 +00: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 22:33:46 +00:00
|
|
|
format_push_string = "warn"
|
2024-03-02 22:17:27 +00:00
|
|
|
impl_trait_in_params = "warn"
|
2024-03-03 01:55:02 +00:00
|
|
|
ref_to_mut = "warn"
|
2024-03-02 22:17:27 +00:00
|
|
|
lossy_float_literal = "warn"
|
|
|
|
mem_forget = "warn"
|
2024-03-02 23:14:45 +00:00
|
|
|
missing_assert_message = "warn"
|
2024-03-02 22:17:27 +00:00
|
|
|
mutex_atomic = "warn"
|
2024-03-03 01:55:02 +00:00
|
|
|
semicolon_outside_block = "warn"
|
|
|
|
fn_to_numeric_cast = "warn"
|
|
|
|
fn_to_numeric_cast_with_truncation = "warn"
|
2024-03-02 22:17:27 +00: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-03 01:55:02 +00:00
|
|
|
cast_possible_wrap = "warn"
|
|
|
|
redundant_closure_for_method_calls = "warn"
|
2024-03-08 16:48:52 +00:00
|
|
|
large_futures = "warn"
|
2024-03-23 01:50:51 +00:00
|
|
|
semicolon_if_nothing_returned = "warn"
|
2024-03-23 01:55:05 +00:00
|
|
|
match_bool = "warn"
|
2024-03-23 02:44:31 +00: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 18:38:15 +00: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-28 00:06:56 +00:00
|
|
|
single_match = "warn"
|
|
|
|
single_match_else = "warn"
|
2024-03-29 20:24:46 +00:00
|
|
|
explicit_deref_methods = "warn"
|
|
|
|
explicit_iter_loop = "warn"
|
2024-04-02 03:30:57 +00:00
|
|
|
manual_let_else = "warn"
|
2024-03-23 18:38:15 +00: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"
|
|
|
|
as_conversions = "allow"
|
|
|
|
string_add = "allow"
|
|
|
|
string_slice = "allow"
|
|
|
|
ref_patterns = "allow"
|