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"
|
2022-02-12 13:20:55 +01:00
|
|
|
version = "0.3.0-next"
|
2022-01-20 12:29:52 +01:00
|
|
|
rust-version = "1.56"
|
|
|
|
edition = "2021"
|
2020-02-15 22:42:21 +01:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2022-01-20 11:51:31 +01:00
|
|
|
# Web framework
|
2022-03-31 22:52:16 +02:00
|
|
|
axum = { version = "0.5.0", default-features = false, features = ["headers", "http1", "http2", "json", "matched-path"], optional = true }
|
2022-01-22 18:38:39 +01:00
|
|
|
axum-server = { version = "0.3.3", features = ["tls-rustls"] }
|
2022-01-20 11:51:31 +01:00
|
|
|
tower = { version = "0.4.11", features = ["util"] }
|
|
|
|
tower-http = { version = "0.2.1", features = ["add-extension", "cors", "compression-full", "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"] }
|
2022-04-06 21:31:29 +02:00
|
|
|
ruma = { git = "https://github.com/ruma/ruma", rev = "d614ad1422d6c4b3437ebc318ca8514ae338fd6d", features = ["compat", "rand", "appservice-api-c", "client-api", "federation-api", "push-gateway-api-c", "state-res", "unstable-msc2448", "unstable-pre-spec", "unstable-exhaustive-types"] }
|
2021-09-01 22:18:06 +02:00
|
|
|
#ruma = { git = "https://github.com/timokoesters/ruma", rev = "50c1db7e0a3a21fc794b0cce3b64285a4c750c71", features = ["compat", "rand", "appservice-api-c", "client-api", "federation-api", "push-gateway-api-c", "state-res", "unstable-pre-spec", "unstable-exhaustive-types"] }
|
2021-07-15 23:17:58 +02:00
|
|
|
#ruma = { path = "../ruma/crates/ruma", features = ["compat", "rand", "appservice-api-c", "client-api", "federation-api", "push-gateway-api-c", "state-res", "unstable-pre-spec", "unstable-exhaustive-types"] }
|
2020-08-25 11:49:51 +02:00
|
|
|
|
2022-01-20 11:51:31 +01:00
|
|
|
# Async runtime and utilities
|
|
|
|
tokio = { version = "1.11.0", features = ["fs", "macros", "signal", "sync"] }
|
2020-08-25 11:49:51 +02:00
|
|
|
# Used for storing data permanently
|
2021-06-12 15:04:28 +02:00
|
|
|
sled = { version = "0.34.6", 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"] }
|
2022-01-14 22:00:13 +01:00
|
|
|
persy = { version = "1.2" , 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
|
2021-09-01 22:31:25 +02:00
|
|
|
bytes = "1.1.0"
|
2021-07-29 08:36:01 +02:00
|
|
|
http = "0.2.4"
|
2020-08-25 11:49:51 +02:00
|
|
|
# Used to find data directory for default db path
|
2021-07-29 08:36:01 +02:00
|
|
|
directories = "3.0.2"
|
2020-08-25 11:49:51 +02:00
|
|
|
# Used for ruma wrapper
|
2021-12-22 19:41:33 +01:00
|
|
|
serde_json = { version = "1.0.70", features = ["raw_value"] }
|
2020-12-08 10:33:44 +01:00
|
|
|
# Used for appservice registration files
|
2021-09-01 22:31:25 +02:00
|
|
|
serde_yaml = "0.8.20"
|
2020-08-25 11:49:51 +02:00
|
|
|
# Used for pdu definition
|
2021-11-27 17:44:52 +01:00
|
|
|
serde = { version = "1.0.130", features = ["rc"] }
|
2020-08-25 11:49:51 +02:00
|
|
|
# Used for secure identifiers
|
2021-07-29 08:36:01 +02:00
|
|
|
rand = "0.8.4"
|
2020-08-25 11:49:51 +02:00
|
|
|
# Used to hash passwords
|
2020-12-05 21:03:43 +01:00
|
|
|
rust-argon2 = "0.8.3"
|
2020-08-25 11:49:51 +02:00
|
|
|
# Used to send requests
|
2022-03-12 15:42:18 +01:00
|
|
|
reqwest = { default-features = false, features = ["rustls-tls-native-roots", "socks"], git = "https://github.com/timokoesters/reqwest", rev = "57b7cf4feb921573dfafad7d34b9ac6e44ead0bd" }
|
2020-08-25 11:49:51 +02:00
|
|
|
# Used for conduit::Error type
|
2021-09-01 22:31:25 +02:00
|
|
|
thiserror = "1.0.28"
|
2020-08-25 11:49:51 +02:00
|
|
|
# Used to generate thumbnails for images
|
2021-03-04 12:29:08 +01:00
|
|
|
image = { version = "0.23.14", default-features = false, features = ["jpeg", "png", "gif"] }
|
2020-08-25 11:49:51 +02:00
|
|
|
# Used to encode server public key
|
2020-12-05 21:03:43 +01:00
|
|
|
base64 = "0.13.0"
|
2020-08-25 11:49:51 +02:00
|
|
|
# Used when hashing the state
|
2021-03-04 12:29:08 +01:00
|
|
|
ring = "0.16.20"
|
2020-09-23 12:03:08 +02:00
|
|
|
# Used when querying the SRV record of other servers
|
2021-07-29 08:36:01 +02:00
|
|
|
trust-dns-resolver = "0.20.3"
|
2020-12-23 19:41:54 +01:00
|
|
|
# Used to find matching events for appservices
|
2021-07-29 08:36:01 +02:00
|
|
|
regex = "1.5.4"
|
2021-02-07 17:38:45 +01:00
|
|
|
# jwt jsonwebtokens
|
|
|
|
jsonwebtoken = "7.2.0"
|
2021-02-28 12:41:03 +01:00
|
|
|
# Performance measurements
|
2021-07-29 08:36:01 +02:00
|
|
|
tracing = { version = "0.1.26", features = ["release_max_level_warn"] }
|
2021-09-01 22:31:25 +02:00
|
|
|
tracing-subscriber = "0.2.20"
|
2021-07-29 08:36:01 +02:00
|
|
|
tracing-flame = "0.1.0"
|
2021-08-19 11:01:18 +02:00
|
|
|
opentelemetry = { version = "0.16.0", features = ["rt-tokio"] }
|
|
|
|
opentelemetry-jaeger = { version = "0.15.0", features = ["rt-tokio"] }
|
2021-06-30 09:52:01 +02:00
|
|
|
lru-cache = "0.1.2"
|
2021-07-14 09:07:08 +02:00
|
|
|
rusqlite = { version = "0.25.3", optional = true, features = ["bundled"] }
|
2021-09-01 22:31:25 +02:00
|
|
|
parking_lot = { version = "0.11.2", optional = true }
|
2021-07-14 09:07:08 +02:00
|
|
|
crossbeam = { version = "0.8.1", optional = true }
|
2021-07-15 13:29:08 +02:00
|
|
|
num_cpus = "1.13.0"
|
2021-07-29 08:36:01 +02:00
|
|
|
threadpool = "1.8.1"
|
2021-07-30 12:11:06 +02:00
|
|
|
heed = { git = "https://github.com/timokoesters/heed.git", rev = "f6f825da7fb2c758867e05ad973ef800a6fe1d5d", optional = true }
|
2022-01-19 07:09:25 +01:00
|
|
|
rocksdb = { version = "0.17.0", default-features = false, features = ["multi-threaded-cf", "zstd"], optional = true }
|
|
|
|
|
2021-08-30 20:18:48 +02:00
|
|
|
thread_local = "1.1.3"
|
2021-10-02 00:37:39 +02:00
|
|
|
# used for TURN server authentication
|
|
|
|
hmac = "0.11.0"
|
|
|
|
sha-1 = "0.9.8"
|
2022-01-18 12:53:17 +01:00
|
|
|
# used for conduit's CLI and admin room command parsing
|
2022-01-21 16:34:21 +01:00
|
|
|
clap = { version = "3.0.10", default-features = false, features = ["std", "derive"] }
|
2022-01-20 11:51:31 +01:00
|
|
|
futures-util = { version = "0.3.19", default-features = false }
|
|
|
|
# Used for reading the configuration from conduit.toml & environment variables
|
|
|
|
figment = { version = "0.10.6", features = ["env", "toml"] }
|
2020-07-26 05:08:00 +02:00
|
|
|
|
2022-02-04 16:59:30 +01:00
|
|
|
tikv-jemalloc-ctl = { version = "0.4.2", features = ["use_std"], optional = true }
|
|
|
|
tikv-jemallocator = { version = "0.4.1", features = ["unprefixed_malloc_on_supported_platforms"], optional = true }
|
2022-01-21 09:19:19 +01:00
|
|
|
|
2020-07-26 05:08:00 +02:00
|
|
|
[features]
|
2022-02-04 16:59:30 +01:00
|
|
|
default = ["conduit_bin", "backend_sqlite", "backend_rocksdb", "jemalloc"]
|
2021-06-12 15:04:28 +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"]
|
2021-10-16 15:19:25 +02:00
|
|
|
backend_heed = ["heed", "crossbeam"]
|
|
|
|
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"]
|
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 = [
|
2020-11-13 20:50:58 +01:00
|
|
|
["debian/README.Debian", "usr/share/doc/matrix-conduit/", "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
|