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"
|
2024-01-12 01:21:50 +00:00
|
|
|
version = "0.7.0-alpha+conduwuit-0.1.2"
|
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.
|
2024-01-12 01:45:48 +00:00
|
|
|
rust-version = "1.74.1"
|
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"] }
|
2024-01-08 02:21:13 +00:00
|
|
|
ruma = { git = "https://github.com/ruma/ruma", rev = "9a5142052c808275f47613d4b66cb6c9fc286079", 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-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"] }
|
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-12 01:45:48 +00:00
|
|
|
serde_json = { version = "1.0.111", features = ["raw_value"] }
|
2020-12-08 09:33:44 +00:00
|
|
|
# Used for appservice registration files
|
2024-01-12 01:45:48 +00:00
|
|
|
serde_yaml = "0.9.30"
|
2020-08-25 09:49:51 +00:00
|
|
|
# Used for pdu definition
|
2024-01-12 01:45:48 +00:00
|
|
|
serde = { version = "1.0.195", 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
|
2024-01-15 06:48:40 +00:00
|
|
|
image = { version = "0.24.8", default-features = false, features = ["jpeg", "png", "gif", "webp"] }
|
2020-08-25 09:49:51 +00:00
|
|
|
# Used to encode server public key
|
2024-01-13 00:27:02 +00:00
|
|
|
base64 = "0.21.7"
|
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"
|
2024-01-05 06:56:47 +00:00
|
|
|
opentelemetry_sdk = { version = "0.21.2", features = ["rt-tokio"] }
|
2023-12-22 04:32:53 +00:00
|
|
|
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-11-25 20:46:03 +00:00
|
|
|
num_cpus = "1.16.0"
|
2021-07-29 06:36:01 +00:00
|
|
|
threadpool = "1.8.1"
|
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
|
|
|
|
2024-01-13 20:18:12 +00:00
|
|
|
rocksdb = { git = "https://github.com/rust-rocksdb/rust-rocksdb", rev = "8fccdf5473e3e75a5ce0f42e5ff5e89c2012305b", 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
|
2024-01-13 00:27:02 +00:00
|
|
|
clap = { version = "4.4.16", 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"]
|
2021-07-14 07:07:08 +00:00
|
|
|
backend_sqlite = ["sqlite"]
|
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
|
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"
|
2024-01-13 19:29:18 +00:00
|
|
|
# missing_docs = "warn"
|
2024-01-15 03:39:08 +00:00
|
|
|
noop_method_call = "warn"
|
|
|
|
pointer_structural_match = "warn"
|
2024-01-13 19:29:18 +00:00
|
|
|
# unreachable_pub = "warn"
|
2024-01-15 03:39:08 +00:00
|
|
|
unused_extern_crates = "warn"
|
|
|
|
unused_import_braces = "warn"
|
2024-01-13 19:29:18 +00:00
|
|
|
# unused_lifetimes = "warn"
|
|
|
|
unused_qualifications = "warn"
|
2024-01-15 03:39:08 +00:00
|
|
|
unused_tuple_struct_fields = "warn"
|
2024-01-13 19:29:18 +00:00
|
|
|
|
|
|
|
[workspace.lints.clippy]
|
2024-01-13 20:18:12 +00:00
|
|
|
suspicious = "warn" # assume deny in practice
|
|
|
|
perf = "warn" # assume deny in practice
|
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"
|
|
|
|
# pedantic = "warn"
|
2024-01-15 03:39:08 +00:00
|
|
|
unnecessary_cast = "warn"
|
|
|
|
cast_lossless = "warn"
|
|
|
|
ptr_as_ptr = "warn"
|
|
|
|
ref_to_mut = "warn"
|
|
|
|
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-13 19:29:18 +00:00
|
|
|
# if_then_some_else_none = "warn"
|
|
|
|
# let_underscore_must_use = "warn"
|
|
|
|
# map_err_ignore = "warn"
|
|
|
|
# missing_docs_in_private_items = "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"
|
2024-01-13 19:29:18 +00:00
|
|
|
# ref_patterns = "warn"
|
2024-01-15 03:39:08 +00:00
|
|
|
rest_pat_in_fully_bound_structs = "warn"
|
|
|
|
str_to_string = "warn"
|
2024-01-13 19:29:18 +00:00
|
|
|
# string_add = "warn"
|
|
|
|
# string_slice = "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-13 19:29:18 +00:00
|
|
|
# unwrap_used = "warn"
|
2024-01-15 03:39:08 +00:00
|
|
|
# expect_used = "warn"
|
2024-01-15 06:48:40 +00:00
|
|
|
wildcard_dependencies = "warn"
|
|
|
|
# or_fun_call = "warn"
|
2024-01-15 07:01:56 +00:00
|
|
|
unnecessary_lazy_evaluations = "warn"
|