2020-02-15 21:42:21 +00:00
|
|
|
[package]
|
2023-11-30 02:37:12 +00:00
|
|
|
name = "conduwuit"
|
|
|
|
description = "a cool fork of Conduit, a Matrix homeserver written in Rust"
|
2020-08-24 09:32:15 +00:00
|
|
|
license = "Apache-2.0"
|
2023-11-30 02:37:12 +00:00
|
|
|
authors = ["strawberry <strawberry@puppygock.gay>", "timokoesters <timo@koesters.xyz>"]
|
|
|
|
homepage = "https://puppygock.gay/conduwuit"
|
|
|
|
repository = "https://gitlab.com/girlbossceo/conduwuit"
|
2020-04-10 05:53:20 +00:00
|
|
|
readme = "README.md"
|
2023-12-03 06:16:08 +00:00
|
|
|
version = "0.7.0-alpha+conduwuit-0.1.1"
|
2022-01-20 11:29:52 +00:00
|
|
|
edition = "2021"
|
2020-02-15 21:42:21 +00:00
|
|
|
|
2023-01-27 21:14:58 +00:00
|
|
|
# When changing this, make sure to update the `flake.lock` file by running
|
|
|
|
# `nix flake update`. If you don't have Nix installed or otherwise don't know
|
|
|
|
# how to do this, ping `@charles:computer.surgery` or `@dusk:gaze.systems` in
|
|
|
|
# the matrix room.
|
2023-06-18 00:04:11 +00:00
|
|
|
rust-version = "1.70.0"
|
2022-12-23 08:20:05 +00:00
|
|
|
|
2020-02-15 21:42:21 +00:00
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2022-01-20 10:51:31 +00:00
|
|
|
# Web framework
|
2023-11-25 06:30:19 +00:00
|
|
|
axum = { version = "0.6.20", default-features = false, features = ["form", "headers", "http1", "http2", "json", "matched-path"], optional = true }
|
2023-06-25 17:31:40 +00:00
|
|
|
axum-server = { version = "0.5.1", features = ["tls-rustls"] }
|
2023-05-21 11:42:59 +00:00
|
|
|
tower = { version = "0.4.13", features = ["util"] }
|
2023-11-25 20:46:03 +00:00
|
|
|
tower-http = { version = "0.4.4", features = ["add-extension", "cors", "sensitive-headers", "trace", "util", "compression-zstd"] }
|
2020-08-25 09:49:51 +00:00
|
|
|
|
|
|
|
# Used for matrix spec type definitions and helpers
|
2021-09-01 13:28:02 +00: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"] }
|
2023-11-28 02:34:45 +00:00
|
|
|
ruma = { git = "https://github.com/ruma/ruma", rev = "5446ea979b314b90da1734f20efaff443d64f73d", 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-msc3958", "unstable-msc2870", "unstable-msc3061", "unstable-extensible-events"] }
|
2023-07-10 14:24:57 +00: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 08:32:25 +00: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 09:49:51 +00:00
|
|
|
|
2022-01-20 10:51:31 +00:00
|
|
|
# Async runtime and utilities
|
2023-07-29 21:57:41 +00:00
|
|
|
hyperlocal = { git = "https://github.com/softprops/hyperlocal", rev = "2ee4d149644600d326559af0d2b235c945b05c04", features = [
|
|
|
|
"server",
|
|
|
|
] }
|
2023-11-25 06:30:19 +00:00
|
|
|
hyper = { version = "0.14", features = ["server", "http1", "http2"] }
|
2023-12-27 06:37:16 +00:00
|
|
|
tokio = { version = "1.35.1", features = ["fs", "macros", "signal", "sync"] }
|
2023-12-04 01:20:25 +00:00
|
|
|
loole = "0.1"
|
2020-08-25 09:49:51 +00:00
|
|
|
# Used for storing data permanently
|
2022-10-09 13:34:36 +00:00
|
|
|
#sled = { version = "0.34.7", features = ["compression", "no_metrics"], optional = true }
|
2021-04-11 08:12:05 +00:00
|
|
|
#sled = { git = "https://github.com/spacejam/sled.git", rev = "e4640e0773595229f398438886f19bca6f7326a2", features = ["compression"] }
|
2023-12-25 15:30:01 +00:00
|
|
|
persy = { version = "1.4.7", optional = true, features = ["background_ops"] }
|
2021-04-07 15:58:33 +00:00
|
|
|
|
2021-04-23 16:45:06 +00:00
|
|
|
# Used for the http request / response body type for Ruma endpoints used with reqwest
|
2023-11-25 06:30:19 +00:00
|
|
|
bytes = "1.5.0"
|
|
|
|
http = "0.2.11"
|
2020-08-25 09:49:51 +00:00
|
|
|
# Used to find data directory for default db path
|
2023-09-14 00:39:03 +00:00
|
|
|
directories = "5.0.1"
|
2020-08-25 09:49:51 +00:00
|
|
|
# Used for ruma wrapper
|
2024-01-01 06:14:12 +00:00
|
|
|
serde_json = { version = "1.0.109", features = ["raw_value"] }
|
2020-12-08 09:33:44 +00:00
|
|
|
# Used for appservice registration files
|
2023-12-26 06:37:41 +00:00
|
|
|
serde_yaml = "0.9.29"
|
2020-08-25 09:49:51 +00:00
|
|
|
# Used for pdu definition
|
2023-11-25 06:30:19 +00:00
|
|
|
serde = { version = "1.0.193", features = ["rc"] }
|
2020-08-25 09:49:51 +00:00
|
|
|
# Used for secure identifiers
|
2023-05-21 11:42:59 +00:00
|
|
|
rand = "0.8.5"
|
2020-08-25 09:49:51 +00:00
|
|
|
# Used to hash passwords
|
2023-12-25 15:28:56 +00:00
|
|
|
argon2 = "0.5"
|
2023-12-26 06:37:00 +00:00
|
|
|
reqwest = { version = "0.11.23", default-features = false, features = ["rustls-tls-native-roots", "socks"] }
|
2020-08-25 09:49:51 +00:00
|
|
|
# Used for conduit::Error type
|
2024-01-03 00:29:25 +00:00
|
|
|
thiserror = "1.0.56"
|
2020-08-25 09:49:51 +00:00
|
|
|
# Used to generate thumbnails for images
|
2023-11-25 06:30:19 +00:00
|
|
|
image = { version = "0.24.7", default-features = false, features = ["jpeg", "png", "gif", "webp"] }
|
2020-08-25 09:49:51 +00:00
|
|
|
# Used to encode server public key
|
2023-11-25 06:30:19 +00:00
|
|
|
base64 = "0.21.5"
|
2020-08-25 09:49:51 +00:00
|
|
|
# Used when hashing the state
|
2023-12-22 23:25:09 +00:00
|
|
|
ring = "0.17.7"
|
2020-09-23 10:03:08 +00:00
|
|
|
# Used when querying the SRV record of other servers
|
2023-11-25 06:30:19 +00:00
|
|
|
trust-dns-resolver = "0.23.2"
|
2020-12-23 18:41:54 +00:00
|
|
|
# Used to find matching events for appservices
|
2023-11-25 06:30:19 +00:00
|
|
|
regex = "1.10.2"
|
2021-02-07 16:38:45 +00:00
|
|
|
# jwt jsonwebtokens
|
2023-12-21 06:47:21 +00:00
|
|
|
jsonwebtoken = "9.2.0"
|
2021-02-28 11:41:03 +00:00
|
|
|
# Performance measurements
|
2023-12-25 20:47:29 +00:00
|
|
|
tracing = { version = "0.1.40", features = [] }
|
2023-12-22 23:25:08 +00:00
|
|
|
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
|
2022-10-09 13:34:36 +00:00
|
|
|
tracing-flame = "0.2.0"
|
2023-12-22 04:32:53 +00:00
|
|
|
opentelemetry = "0.21.0"
|
|
|
|
opentelemetry_sdk = { version = "0.21.1", features = ["rt-tokio"] }
|
|
|
|
opentelemetry-jaeger = { version = "0.20.0", features = ["rt-tokio"] }
|
|
|
|
tracing-opentelemetry = "0.22.0"
|
2021-06-30 07:52:01 +00:00
|
|
|
lru-cache = "0.1.2"
|
2023-11-25 06:30:19 +00:00
|
|
|
rusqlite = { version = "0.30.0", optional = true, features = ["bundled"] }
|
2022-10-09 13:34:36 +00:00
|
|
|
parking_lot = { version = "0.12.1", optional = true }
|
2023-12-25 15:30:29 +00:00
|
|
|
crossbeam = { version = "0.8.3", optional = true }
|
2023-11-25 20:46:03 +00:00
|
|
|
num_cpus = "1.16.0"
|
2021-07-29 06:36:01 +00:00
|
|
|
threadpool = "1.8.1"
|
2021-07-30 10:11:06 +00:00
|
|
|
heed = { git = "https://github.com/timokoesters/heed.git", rev = "f6f825da7fb2c758867e05ad973ef800a6fe1d5d", optional = true }
|
2023-02-26 15:29:06 +00:00
|
|
|
# Used for ruma wrapper
|
2023-12-22 23:33:30 +00:00
|
|
|
serde_html_form = "0.2.3"
|
2022-01-19 06:09:25 +00:00
|
|
|
|
2023-12-22 03:28:41 +00:00
|
|
|
rocksdb = { git = "https://github.com/rust-rocksdb/rust-rocksdb", rev = "66f04df013b6e6bd42b5a8c353406e09a7c7da2a", default-features = false, features = ["multi-threaded-cf", "snappy", "lz4", "zstd"], optional = true }
|
2023-05-21 09:51:36 +00:00
|
|
|
|
2023-05-21 11:42:59 +00:00
|
|
|
thread_local = "1.1.7"
|
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"
|
2023-11-25 07:11:41 +00:00
|
|
|
sha2 = { version = "0.10.8" }
|
2022-01-18 11:53:17 +00:00
|
|
|
# used for conduit's CLI and admin room command parsing
|
2023-12-29 06:27:28 +00:00
|
|
|
clap = { version = "4.4.12", default-features = false, features = ["std", "derive", "help", "usage", "error-context"] }
|
2023-12-25 20:47:59 +00:00
|
|
|
futures-util = { version = "0.3.30", default-features = false }
|
2022-01-20 10:51:31 +00:00
|
|
|
# Used for reading the configuration from conduit.toml & environment variables
|
2024-01-01 06:14:24 +00:00
|
|
|
figment = { version = "0.10.13", features = ["env", "toml"] }
|
2020-07-26 03:08:00 +00:00
|
|
|
|
2022-10-09 13:34:36 +00: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 21:15:09 +00:00
|
|
|
lazy_static = "1.4.0"
|
2024-01-03 00:22:30 +00:00
|
|
|
async-trait = "0.1.77"
|
2022-01-21 08:19:19 +00:00
|
|
|
|
2022-11-25 20:20:45 +00:00
|
|
|
sd-notify = { version = "0.4.1", optional = true }
|
|
|
|
|
2023-11-25 17:42:05 +00:00
|
|
|
# stupid ruma using JsOption instead of Option
|
|
|
|
js_option = "0.1"
|
|
|
|
|
2023-07-26 20:24:44 +00:00
|
|
|
[target.'cfg(unix)'.dependencies]
|
2023-12-22 23:40:40 +00:00
|
|
|
nix = { version = "0.27.1", features = ["resource"] }
|
2023-07-26 20:24:44 +00:00
|
|
|
|
2020-07-26 03:08:00 +00:00
|
|
|
[features]
|
2023-11-27 05:39:50 +00:00
|
|
|
default = ["conduit_bin", "backend_rocksdb", "systemd", "zstd_compression"]
|
2022-10-09 13:34:36 +00:00
|
|
|
#backend_sled = ["sled"]
|
2021-12-23 22:59:17 +00:00
|
|
|
backend_persy = ["persy", "parking_lot"]
|
2021-07-14 07:07:08 +00:00
|
|
|
backend_sqlite = ["sqlite"]
|
2023-12-24 04:40:56 +00:00
|
|
|
#backend_heed = ["heed", "crossbeam"]
|
2021-10-16 13:19:25 +00:00
|
|
|
backend_rocksdb = ["rocksdb"]
|
2022-02-04 15:59:30 +00:00
|
|
|
jemalloc = ["tikv-jemalloc-ctl", "tikv-jemallocator"]
|
2021-12-20 09:16:22 +00:00
|
|
|
sqlite = ["rusqlite", "parking_lot", "tokio/signal"]
|
2022-01-20 10:51:31 +00:00
|
|
|
conduit_bin = ["axum"]
|
2022-11-25 20:20:45 +00:00
|
|
|
systemd = ["sd-notify"]
|
2023-11-25 06:30:19 +00:00
|
|
|
#gzip_compression = ["tower-http/compression-gzip"]
|
2023-11-25 20:46:03 +00:00
|
|
|
zstd_compression = []
|
2023-11-25 06:30:19 +00:00
|
|
|
#brotli_compression = ["tower-http/compression-br"]
|
|
|
|
#compression = ["tower-http/compression-full"]
|
2023-11-25 07:11:41 +00:00
|
|
|
sha256_media = []
|
2023-11-27 05:39:50 +00:00
|
|
|
io_uring = ["rocksdb/io-uring"]
|
2020-07-26 03:08:00 +00:00
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "conduit"
|
|
|
|
path = "src/main.rs"
|
|
|
|
required-features = ["conduit_bin"]
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "conduit"
|
|
|
|
path = "src/lib.rs"
|
2020-05-31 20:49:07 +00: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 10:24:37 +00:00
|
|
|
["debian/README.md", "usr/share/doc/matrix-conduit/README.Debian", "644"],
|
2020-05-31 20:49:07 +00:00
|
|
|
["README.md", "usr/share/doc/matrix-conduit/", "644"],
|
|
|
|
["target/release/conduit", "usr/sbin/matrix-conduit", "755"],
|
|
|
|
]
|
|
|
|
conf-files = [
|
2021-04-16 20:10:07 +00:00
|
|
|
"/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
|
|
|
|
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'
|
2021-08-13 15:20:40 +00:00
|
|
|
incremental = true
|
|
|
|
|
|
|
|
[profile.release]
|
2023-08-05 23:30:52 +00:00
|
|
|
lto = 'fat'
|
|
|
|
incremental = false
|
|
|
|
codegen-units=1
|
|
|
|
opt-level = 3
|
|
|
|
overflow-checks = true
|
|
|
|
strip = "symbols"
|
|
|
|
panic = "abort"
|
2023-12-03 06:00:23 +00:00
|
|
|
debug = 0
|
2021-08-13 15:20:40 +00: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]
|
2023-12-03 06:00:23 +00:00
|
|
|
debug = 0
|
2021-08-13 15:20:40 +00:00
|
|
|
opt-level = 3
|
2023-08-05 23:30:52 +00:00
|
|
|
codegen-units=1
|
2021-08-13 15:20:40 +00:00
|
|
|
[profile.release.package."*"]
|
2023-12-03 06:00:23 +00:00
|
|
|
debug = 0
|
2021-08-13 15:20:40 +00:00
|
|
|
opt-level = 3
|
2023-08-05 23:30:52 +00:00
|
|
|
codegen-units=1
|