2024-01-26 09:11:14 +01:00
|
|
|
[workspace.lints.rust]
|
|
|
|
explicit_outlives_requirements = "warn"
|
|
|
|
unused_qualifications = "warn"
|
|
|
|
|
|
|
|
[workspace.lints.clippy]
|
|
|
|
cloned_instead_of_copied = "warn"
|
|
|
|
dbg_macro = "warn"
|
|
|
|
str_to_string = "warn"
|
|
|
|
|
2020-02-15 22:42:21 +01:00
|
|
|
[package]
|
|
|
|
authors = ["timokoesters <timo@koesters.xyz>"]
|
2024-05-06 20:43:13 +02:00
|
|
|
description = "A Matrix homeserver written in Rust"
|
|
|
|
edition = "2021"
|
2020-04-10 07:53:20 +02:00
|
|
|
homepage = "https://conduit.rs"
|
2024-05-06 20:43:13 +02:00
|
|
|
license = "Apache-2.0"
|
|
|
|
name = "conduit"
|
2020-04-10 07:53:20 +02:00
|
|
|
readme = "README.md"
|
2024-05-06 20:43:13 +02:00
|
|
|
repository = "https://gitlab.com/famedly/conduit"
|
2024-06-14 13:33:40 +02:00
|
|
|
version = "0.9.0-alpha"
|
2020-02-15 22:42:21 +01:00
|
|
|
|
2024-01-23 07:48:58 +01:00
|
|
|
# See also `rust-toolchain.toml`
|
2024-06-21 09:29:33 +02:00
|
|
|
rust-version = "1.79.0"
|
2022-12-23 09:20:05 +01:00
|
|
|
|
2020-02-15 22:42:21 +01:00
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
2024-01-26 09:11:14 +01:00
|
|
|
[lints]
|
|
|
|
workspace = true
|
|
|
|
|
2020-02-15 22:42:21 +01:00
|
|
|
[dependencies]
|
2022-01-20 11:51:31 +01:00
|
|
|
# Web framework
|
2024-04-07 21:46:18 +02:00
|
|
|
axum = { version = "0.7", default-features = false, features = [
|
2024-05-06 20:43:13 +02:00
|
|
|
"form",
|
|
|
|
"http1",
|
|
|
|
"http2",
|
|
|
|
"json",
|
|
|
|
"matched-path",
|
|
|
|
], optional = true }
|
2024-04-07 21:46:18 +02:00
|
|
|
axum-extra = { version = "0.9", features = ["typed-header"] }
|
|
|
|
axum-server = { version = "0.6", features = ["tls-rustls"] }
|
2023-05-21 13:42:59 +02:00
|
|
|
tower = { version = "0.4.13", features = ["util"] }
|
2024-04-07 21:46:18 +02:00
|
|
|
tower-http = { version = "0.5", features = [
|
2024-05-06 20:43:13 +02:00
|
|
|
"add-extension",
|
|
|
|
"cors",
|
|
|
|
"sensitive-headers",
|
|
|
|
"trace",
|
|
|
|
"util",
|
|
|
|
] }
|
2024-04-07 21:46:18 +02:00
|
|
|
tower-service = "0.3"
|
2020-08-25 11:49:51 +02:00
|
|
|
|
2022-01-20 11:51:31 +01:00
|
|
|
# Async runtime and utilities
|
2023-05-21 13:42:59 +02:00
|
|
|
tokio = { version = "1.28.1", features = ["fs", "macros", "signal", "sync"] }
|
2020-08-25 11:49:51 +02:00
|
|
|
# Used for storing data permanently
|
2022-10-09 15:34:36 +02:00
|
|
|
#sled = { version = "0.34.7", features = ["compression", "no_metrics"], optional = true }
|
2021-04-11 10:12:05 +02:00
|
|
|
#sled = { git = "https://github.com/spacejam/sled.git", rev = "e4640e0773595229f398438886f19bca6f7326a2", features = ["compression"] }
|
2023-05-21 13:42:59 +02:00
|
|
|
persy = { version = "1.4.4", optional = true, features = ["background_ops"] }
|
2021-04-07 17:58:33 +02:00
|
|
|
|
2021-04-23 18:45:06 +02:00
|
|
|
# Used for the http request / response body type for Ruma endpoints used with reqwest
|
2023-05-21 13:42:59 +02:00
|
|
|
bytes = "1.4.0"
|
2024-04-07 21:46:18 +02:00
|
|
|
http = "1"
|
2020-08-25 11:49:51 +02:00
|
|
|
# Used to find data directory for default db path
|
2024-04-27 10:08:08 +02:00
|
|
|
directories = "5"
|
2020-08-25 11:49:51 +02:00
|
|
|
# Used for ruma wrapper
|
2023-05-21 13:42:59 +02:00
|
|
|
serde_json = { version = "1.0.96", features = ["raw_value"] }
|
2020-12-08 10:33:44 +01:00
|
|
|
# Used for appservice registration files
|
2023-05-21 13:42:59 +02:00
|
|
|
serde_yaml = "0.9.21"
|
2020-08-25 11:49:51 +02:00
|
|
|
# Used for pdu definition
|
2023-05-21 13:42:59 +02:00
|
|
|
serde = { version = "1.0.163", features = ["rc"] }
|
2020-08-25 11:49:51 +02:00
|
|
|
# Used for secure identifiers
|
2023-05-21 13:42:59 +02:00
|
|
|
rand = "0.8.5"
|
2020-08-25 11:49:51 +02:00
|
|
|
# Used to hash passwords
|
2024-04-27 10:08:08 +02:00
|
|
|
rust-argon2 = "2"
|
2020-08-25 11:49:51 +02:00
|
|
|
# Used to send requests
|
2024-04-07 21:46:18 +02:00
|
|
|
hyper = "1.1"
|
|
|
|
hyper-util = { version = "0.1", features = [
|
|
|
|
"client",
|
|
|
|
"client-legacy",
|
|
|
|
"http1",
|
|
|
|
"http2",
|
|
|
|
] }
|
|
|
|
reqwest = { version = "0.12", default-features = false, features = [
|
2024-05-06 20:43:13 +02:00
|
|
|
"rustls-tls-native-roots",
|
|
|
|
"socks",
|
|
|
|
] }
|
2020-08-25 11:49:51 +02:00
|
|
|
# Used for conduit::Error type
|
2023-05-21 13:42:59 +02:00
|
|
|
thiserror = "1.0.40"
|
2020-08-25 11:49:51 +02:00
|
|
|
# Used to generate thumbnails for images
|
2024-05-06 20:43:13 +02:00
|
|
|
image = { version = "0.25", default-features = false, features = [
|
|
|
|
"gif",
|
|
|
|
"jpeg",
|
|
|
|
"png",
|
|
|
|
] }
|
2020-08-25 11:49:51 +02:00
|
|
|
# Used to encode server public key
|
2024-04-27 10:08:08 +02:00
|
|
|
base64 = "0.22"
|
2020-08-25 11:49:51 +02:00
|
|
|
# Used when hashing the state
|
2024-01-30 01:08:29 +01:00
|
|
|
ring = "0.17.7"
|
2020-09-23 12:03:08 +02:00
|
|
|
# Used when querying the SRV record of other servers
|
2024-04-27 10:10:13 +02:00
|
|
|
hickory-resolver = "0.24"
|
2020-12-23 19:41:54 +01:00
|
|
|
# Used to find matching events for appservices
|
2023-05-21 13:42:59 +02:00
|
|
|
regex = "1.8.1"
|
2021-02-07 17:38:45 +01:00
|
|
|
# jwt jsonwebtokens
|
2024-01-30 01:08:29 +01:00
|
|
|
jsonwebtoken = "9.2.0"
|
2021-02-28 12:41:03 +01:00
|
|
|
# Performance measurements
|
2024-04-07 21:46:18 +02:00
|
|
|
opentelemetry = "0.22"
|
|
|
|
opentelemetry-jaeger-propagator = "0.1"
|
|
|
|
opentelemetry-otlp = "0.15"
|
|
|
|
opentelemetry_sdk = { version = "0.22", features = ["rt-tokio"] }
|
|
|
|
tracing = "0.1.37"
|
2024-05-06 20:43:13 +02:00
|
|
|
tracing-flame = "0.2.0"
|
2024-04-07 21:46:18 +02:00
|
|
|
tracing-opentelemetry = "0.23"
|
2024-05-06 20:43:13 +02:00
|
|
|
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
|
|
|
|
|
2021-06-30 09:52:01 +02:00
|
|
|
lru-cache = "0.1.2"
|
2022-10-09 15:34:36 +02:00
|
|
|
parking_lot = { version = "0.12.1", optional = true }
|
2024-05-06 20:43:13 +02:00
|
|
|
rusqlite = { version = "0.31", optional = true, features = ["bundled"] }
|
|
|
|
|
2023-12-24 05:40:56 +01:00
|
|
|
# crossbeam = { version = "0.8.2", optional = true }
|
2023-05-21 13:42:59 +02:00
|
|
|
num_cpus = "1.15.0"
|
2021-07-29 08:36:01 +02:00
|
|
|
threadpool = "1.8.1"
|
2023-12-24 05:40:56 +01:00
|
|
|
# heed = { git = "https://github.com/timokoesters/heed.git", rev = "f6f825da7fb2c758867e05ad973ef800a6fe1d5d", optional = true }
|
2023-02-26 16:29:06 +01:00
|
|
|
# Used for ruma wrapper
|
|
|
|
serde_html_form = "0.2.0"
|
2022-01-19 07:09:25 +01:00
|
|
|
|
2023-05-21 13:42:59 +02:00
|
|
|
thread_local = "1.1.7"
|
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"
|
2022-01-18 12:53:17 +01:00
|
|
|
# used for conduit's CLI and admin room command parsing
|
2024-05-06 20:43:13 +02:00
|
|
|
clap = { version = "4.3.0", default-features = false, features = [
|
|
|
|
"derive",
|
|
|
|
"error-context",
|
|
|
|
"help",
|
|
|
|
"std",
|
|
|
|
"string",
|
|
|
|
"usage",
|
|
|
|
] }
|
2023-05-21 13:42:59 +02:00
|
|
|
futures-util = { version = "0.3.28", default-features = false }
|
2022-01-20 11:51:31 +01:00
|
|
|
# Used for reading the configuration from conduit.toml & environment variables
|
2023-05-21 13:42:59 +02:00
|
|
|
figment = { version = "0.10.8", features = ["env", "toml"] }
|
2020-07-26 05:08:00 +02:00
|
|
|
|
2024-05-02 10:26:43 +02:00
|
|
|
# Validating urls in config
|
|
|
|
url = { version = "2", features = ["serde"] }
|
|
|
|
|
2023-05-21 13:42:59 +02:00
|
|
|
async-trait = "0.1.68"
|
2024-05-06 20:43:13 +02:00
|
|
|
tikv-jemallocator = { version = "0.5.0", features = [
|
|
|
|
"unprefixed_malloc_on_supported_platforms",
|
|
|
|
], optional = true }
|
2022-01-21 09:19:19 +01:00
|
|
|
|
2022-11-25 21:20:45 +01:00
|
|
|
sd-notify = { version = "0.4.1", optional = true }
|
|
|
|
|
2024-04-07 21:46:18 +02:00
|
|
|
# Used for matrix spec type definitions and helpers
|
|
|
|
[dependencies.ruma]
|
|
|
|
features = [
|
|
|
|
"appservice-api-c",
|
|
|
|
"client-api",
|
|
|
|
"compat",
|
|
|
|
"federation-api",
|
|
|
|
"push-gateway-api-c",
|
|
|
|
"rand",
|
|
|
|
"ring-compat",
|
|
|
|
"server-util",
|
|
|
|
"state-res",
|
|
|
|
"unstable-exhaustive-types",
|
|
|
|
"unstable-msc2448",
|
|
|
|
"unstable-msc3575",
|
|
|
|
"unstable-unspecified",
|
|
|
|
]
|
|
|
|
git = "https://github.com/ruma/ruma"
|
|
|
|
|
2024-03-11 07:39:02 +01:00
|
|
|
[dependencies.rocksdb]
|
2024-05-06 20:43:13 +02:00
|
|
|
features = ["lz4", "multi-threaded-cf", "zstd"]
|
|
|
|
optional = true
|
2024-03-11 07:39:02 +01:00
|
|
|
package = "rust-rocksdb"
|
2024-04-27 10:08:08 +02:00
|
|
|
version = "0.25"
|
2024-01-29 00:47:37 +01:00
|
|
|
|
2023-07-26 22:24:44 +02:00
|
|
|
[target.'cfg(unix)'.dependencies]
|
2024-04-01 14:36:38 +02:00
|
|
|
nix = { version = "0.28", features = ["resource"] }
|
2023-07-26 22:24:44 +02:00
|
|
|
|
2020-07-26 05:08:00 +02:00
|
|
|
[features]
|
2024-05-06 20:43:13 +02:00
|
|
|
default = ["backend_rocksdb", "backend_sqlite", "conduit_bin", "systemd"]
|
2022-10-09 15:34:36 +02:00
|
|
|
#backend_sled = ["sled"]
|
2024-05-06 20:43:13 +02:00
|
|
|
backend_persy = ["parking_lot", "persy"]
|
2021-07-14 09:07:08 +02:00
|
|
|
backend_sqlite = ["sqlite"]
|
2023-12-24 05:40:56 +01:00
|
|
|
#backend_heed = ["heed", "crossbeam"]
|
2024-03-11 07:39:02 +01:00
|
|
|
backend_rocksdb = ["rocksdb"]
|
2022-01-20 11:51:31 +01:00
|
|
|
conduit_bin = ["axum"]
|
2024-05-06 20:43:13 +02:00
|
|
|
jemalloc = ["tikv-jemallocator"]
|
|
|
|
sqlite = ["parking_lot", "rusqlite", "tokio/signal"]
|
2022-11-25 21:20:45 +01:00
|
|
|
systemd = ["sd-notify"]
|
2020-07-26 05:08:00 +02:00
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "conduit"
|
|
|
|
path = "src/main.rs"
|
|
|
|
required-features = ["conduit_bin"]
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "conduit"
|
|
|
|
path = "src/lib.rs"
|
2020-05-31 22:49:07 +02:00
|
|
|
|
|
|
|
[package.metadata.deb]
|
2024-05-06 20:43:13 +02:00
|
|
|
assets = [
|
|
|
|
[
|
|
|
|
"README.md",
|
|
|
|
"usr/share/doc/matrix-conduit/",
|
|
|
|
"644",
|
|
|
|
],
|
|
|
|
[
|
|
|
|
"debian/README.md",
|
|
|
|
"usr/share/doc/matrix-conduit/README.Debian",
|
|
|
|
"644",
|
|
|
|
],
|
|
|
|
[
|
|
|
|
"target/release/conduit",
|
|
|
|
"usr/sbin/matrix-conduit",
|
|
|
|
"755",
|
|
|
|
],
|
|
|
|
]
|
|
|
|
conf-files = ["/etc/matrix-conduit/conduit.toml"]
|
2020-05-31 22:49:07 +02:00
|
|
|
copyright = "2020, Timo Kösters <timo@koesters.xyz>"
|
|
|
|
depends = "$auto, ca-certificates"
|
|
|
|
extended-description = """\
|
|
|
|
A fast Matrix homeserver that is optimized for smaller, personal servers, \
|
|
|
|
instead of a server that has high scalability."""
|
2024-05-06 20:43:13 +02:00
|
|
|
license-file = ["LICENSE", "3"]
|
|
|
|
maintainer = "Paul van Tilburg <paul@luon.net>"
|
2020-05-31 22:49:07 +02:00
|
|
|
maintainer-scripts = "debian/"
|
2024-05-06 20:43:13 +02:00
|
|
|
name = "matrix-conduit"
|
|
|
|
priority = "optional"
|
|
|
|
section = "net"
|
2020-05-31 22:49:07 +02:00
|
|
|
systemd-units = { unit-name = "matrix-conduit" }
|
2021-05-12 20:04:28 +02:00
|
|
|
|
2021-08-13 17:20:40 +02:00
|
|
|
[profile.dev]
|
|
|
|
incremental = true
|
2024-05-06 20:43:13 +02:00
|
|
|
lto = 'off'
|
2021-08-13 17:20:40 +02:00
|
|
|
|
|
|
|
[profile.release]
|
2024-05-06 20:43:13 +02:00
|
|
|
codegen-units = 32
|
2021-08-13 17:20:40 +02:00
|
|
|
incremental = true
|
2024-05-06 20:43:13 +02:00
|
|
|
lto = 'thin'
|
2021-08-13 17:20:40 +02:00
|
|
|
# If you want to make flamegraphs, enable debug info:
|
|
|
|
# debug = true
|
|
|
|
|
|
|
|
# For releases also try to max optimizations for dependencies:
|
|
|
|
[profile.release.build-override]
|
|
|
|
opt-level = 3
|
|
|
|
[profile.release.package."*"]
|
|
|
|
opt-level = 3
|