2024-01-26 09:11:14 +01:00
|
|
|
# Keep alphabetically sorted
|
|
|
|
[workspace.lints.rust]
|
|
|
|
explicit_outlives_requirements = "warn"
|
|
|
|
unused_qualifications = "warn"
|
|
|
|
|
|
|
|
# Keep alphabetically sorted
|
|
|
|
[workspace.lints.clippy]
|
|
|
|
cloned_instead_of_copied = "warn"
|
|
|
|
dbg_macro = "warn"
|
|
|
|
str_to_string = "warn"
|
|
|
|
|
2020-02-15 22:42:21 +01:00
|
|
|
[package]
|
2020-04-10 07:53:20 +02:00
|
|
|
name = "conduit"
|
|
|
|
description = "A Matrix homeserver written in Rust"
|
2020-08-24 11:32:15 +02:00
|
|
|
license = "Apache-2.0"
|
2020-02-15 22:42:21 +01:00
|
|
|
authors = ["timokoesters <timo@koesters.xyz>"]
|
2020-04-10 07:53:20 +02:00
|
|
|
homepage = "https://conduit.rs"
|
2020-12-13 13:41:00 +01:00
|
|
|
repository = "https://gitlab.com/famedly/conduit"
|
2020-04-10 07:53:20 +02:00
|
|
|
readme = "README.md"
|
2023-08-11 10:48:48 +02:00
|
|
|
version = "0.7.0-alpha"
|
2022-01-20 12:29:52 +01:00
|
|
|
edition = "2021"
|
2020-02-15 22:42:21 +01:00
|
|
|
|
2024-01-23 07:48:58 +01:00
|
|
|
# See also `rust-toolchain.toml`
|
2024-01-26 05:33:15 +01:00
|
|
|
rust-version = "1.75.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
|
2023-06-29 11:20:52 +02:00
|
|
|
axum = { version = "0.6.18", default-features = false, features = ["form", "headers", "http1", "http2", "json", "matched-path"], optional = true }
|
2023-06-25 19:31:40 +02:00
|
|
|
axum-server = { version = "0.5.1", features = ["tls-rustls"] }
|
2023-05-21 13:42:59 +02:00
|
|
|
tower = { version = "0.4.13", features = ["util"] }
|
2023-06-25 23:43:19 +02:00
|
|
|
tower-http = { version = "0.4.1", features = ["add-extension", "cors", "sensitive-headers", "trace", "util"] }
|
2020-08-25 11:49:51 +02:00
|
|
|
|
|
|
|
# Used for matrix spec type definitions and helpers
|
2021-09-01 15:28:02 +02:00
|
|
|
#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"] }
|
2024-02-25 09:49:20 +01:00
|
|
|
ruma = { git = "https://github.com/ruma/ruma", rev = "1a1c61ee1e8f0936e956a3b69c931ce12ee28475", 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" ] }
|
2023-07-10 16:24:57 +02:00
|
|
|
#ruma = { git = "https://github.com/timokoesters/ruma", rev = "4ec9c69bb7e09391add2382b3ebac97b6e8f4c64", 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" ] }
|
2023-07-06 10:32:25 +02:00
|
|
|
#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" ] }
|
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"
|
|
|
|
http = "0.2.9"
|
2020-08-25 11:49:51 +02:00
|
|
|
# Used to find data directory for default db path
|
2023-05-21 13:42:59 +02:00
|
|
|
directories = "4.0.1"
|
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
|
2022-10-09 15:34:36 +02:00
|
|
|
rust-argon2 = "1.0.0"
|
2020-08-25 11:49:51 +02:00
|
|
|
# Used to send requests
|
2023-08-02 01:00:06 +02:00
|
|
|
hyper = "0.14.26"
|
|
|
|
reqwest = { version = "0.11.18", default-features = false, features = ["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
|
2023-05-21 13:42:59 +02:00
|
|
|
image = { version = "0.24.6", default-features = false, features = ["jpeg", "png", "gif"] }
|
2020-08-25 11:49:51 +02:00
|
|
|
# Used to encode server public key
|
2023-08-02 02:48:50 +02:00
|
|
|
base64 = "0.21.2"
|
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
|
2022-10-09 15:34:36 +02:00
|
|
|
trust-dns-resolver = "0.22.0"
|
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
|
2023-05-21 13:42:59 +02:00
|
|
|
tracing = { version = "0.1.37", features = [] }
|
|
|
|
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
|
2022-10-09 15:34:36 +02:00
|
|
|
tracing-flame = "0.2.0"
|
|
|
|
opentelemetry = { version = "0.18.0", features = ["rt-tokio"] }
|
|
|
|
opentelemetry-jaeger = { version = "0.17.0", features = ["rt-tokio"] }
|
2022-12-18 06:37:03 +01:00
|
|
|
tracing-opentelemetry = "0.18.0"
|
2021-06-30 09:52:01 +02:00
|
|
|
lru-cache = "0.1.2"
|
2023-08-02 03:09:55 +02:00
|
|
|
rusqlite = { version = "0.29.0", optional = true, features = ["bundled"] }
|
2022-10-09 15:34:36 +02:00
|
|
|
parking_lot = { version = "0.12.1", optional = true }
|
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
|
2023-05-21 13:42:59 +02:00
|
|
|
clap = { version = "4.3.0", default-features = false, features = ["std", "derive", "help", "usage", "error-context"] }
|
|
|
|
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
|
|
|
|
2022-10-09 15:34:36 +02:00
|
|
|
tikv-jemalloc-ctl = { version = "0.5.0", features = ["use_std"], optional = true }
|
|
|
|
tikv-jemallocator = { version = "0.5.0", features = ["unprefixed_malloc_on_supported_platforms"], optional = true }
|
2022-09-06 23:15:09 +02:00
|
|
|
lazy_static = "1.4.0"
|
2023-05-21 13:42:59 +02:00
|
|
|
async-trait = "0.1.68"
|
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-03-11 07:39:02 +01:00
|
|
|
[dependencies.rocksdb]
|
|
|
|
package = "rust-rocksdb"
|
2024-01-29 00:47:37 +01:00
|
|
|
version = "0.22.7"
|
|
|
|
optional = true
|
|
|
|
features = [
|
|
|
|
"multi-threaded-cf",
|
|
|
|
"zstd",
|
|
|
|
]
|
|
|
|
|
2023-07-26 22:24:44 +02:00
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
|
|
nix = { version = "0.26.2", features = ["resource"] }
|
|
|
|
|
2020-07-26 05:08:00 +02:00
|
|
|
[features]
|
2023-07-03 19:37:54 +02:00
|
|
|
default = ["conduit_bin", "backend_sqlite", "backend_rocksdb", "systemd"]
|
2022-10-09 15:34:36 +02:00
|
|
|
#backend_sled = ["sled"]
|
2021-12-23 23:59:17 +01:00
|
|
|
backend_persy = ["persy", "parking_lot"]
|
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-02-04 16:59:30 +01:00
|
|
|
jemalloc = ["tikv-jemalloc-ctl", "tikv-jemallocator"]
|
2021-12-20 10:16:22 +01:00
|
|
|
sqlite = ["rusqlite", "parking_lot", "tokio/signal"]
|
2022-01-20 11:51:31 +01:00
|
|
|
conduit_bin = ["axum"]
|
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]
|
|
|
|
name = "matrix-conduit"
|
|
|
|
maintainer = "Paul van Tilburg <paul@luon.net>"
|
|
|
|
copyright = "2020, Timo Kösters <timo@koesters.xyz>"
|
|
|
|
license-file = ["LICENSE", "3"]
|
|
|
|
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."""
|
|
|
|
section = "net"
|
|
|
|
priority = "optional"
|
|
|
|
assets = [
|
2023-07-23 12:24:37 +02:00
|
|
|
["debian/README.md", "usr/share/doc/matrix-conduit/README.Debian", "644"],
|
2020-05-31 22:49:07 +02:00
|
|
|
["README.md", "usr/share/doc/matrix-conduit/", "644"],
|
|
|
|
["target/release/conduit", "usr/sbin/matrix-conduit", "755"],
|
|
|
|
]
|
|
|
|
conf-files = [
|
2021-04-16 22:10:07 +02:00
|
|
|
"/etc/matrix-conduit/conduit.toml"
|
2020-05-31 22:49:07 +02:00
|
|
|
]
|
|
|
|
maintainer-scripts = "debian/"
|
|
|
|
systemd-units = { unit-name = "matrix-conduit" }
|
2021-05-12 20:04:28 +02:00
|
|
|
|
2021-08-13 17:20:40 +02:00
|
|
|
[profile.dev]
|
2021-11-21 18:34:08 +01:00
|
|
|
lto = 'off'
|
2021-08-13 17:20:40 +02:00
|
|
|
incremental = true
|
|
|
|
|
|
|
|
[profile.release]
|
2021-08-22 23:05:32 +02:00
|
|
|
lto = 'thin'
|
2021-08-13 17:20:40 +02:00
|
|
|
incremental = true
|
2021-08-22 23:05:32 +02:00
|
|
|
codegen-units=32
|
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
|