[package] name = "conduit" description = "a cool fork of Conduit, a Matrix homeserver written in Rust" license = "Apache-2.0" authors = ["strawberry ", "timokoesters "] homepage = "https://puppygock.gay/conduwuit" repository = "https://gitlab.com/girlbossceo/conduwuit" readme = "README.md" version = "0.7.0-alpha+conduwuit-0.1.2" edition = "2021" # See also `rust-toolchain.toml` rust-version = "1.75.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] # Web framework axum = { version = "0.6.20", default-features = false, features = ["form", "headers", "http1", "http2", "json", "matched-path"], optional = true } axum-server = { version = "0.5.1", features = ["tls-rustls"] } tower = { version = "0.4.13", features = ["util"] } tower-http = { version = "0.4.4", features = ["add-extension", "cors", "sensitive-headers", "trace", "util", "compression-zstd"] } # Used for matrix spec type definitions and helpers #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"] } ruma = { git = "https://github.com/ruma/ruma", rev = "68c9bb0930f2195fa8672fbef9633ef62737df5d", 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-msc2867", "unstable-extensible-events"] } #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" ] } #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" ] } # Async runtime and utilities hyperlocal = { git = "https://github.com/softprops/hyperlocal", rev = "2ee4d149644600d326559af0d2b235c945b05c04", features = [ "server", ] } hyper = { version = "0.14", features = ["server", "http1", "http2"] } tokio = { version = "1.36.0", features = ["fs", "macros", "signal", "sync"] } # Used for the http request / response body type for Ruma endpoints used with reqwest bytes = "1.5.0" http = "0.2.11" # Used to find data directory for default db path directories = "5.0.1" # Used for ruma wrapper serde_json = { version = "1.0.111", features = ["raw_value"] } # Used for appservice registration files serde_yaml = "0.9.30" # Used for pdu definition serde = { version = "1.0.195", features = ["rc"] } # Used for secure identifiers rand = "0.8.5" # Used to hash passwords argon2 = "0.5.3" reqwest = { version = "0.11.24", default-features = false, features = ["rustls-tls-native-roots", "socks"] } # Used for conduit::Error type thiserror = "1.0.56" # Used to generate thumbnails for images image = { version = "0.24.8", default-features = false, features = ["jpeg", "png", "gif", "webp"] } # Used to encode server public key base64 = "0.21.7" # Used when hashing the state ring = "0.17.7" # Used when querying the SRV record of other servers trust-dns-resolver = "0.23.2" # Used to find matching events for appservices regex = "1.10.3" # Used to load forbidden room/user regex from config serde_regex = "1.1.0" itertools = "0.12.1" # jwt jsonwebtokens jsonwebtoken = "9.2.0" # Performance measurements tracing = { version = "0.1.40", features = [] } tracing-subscriber = { version = "0.3.18", features = ["env-filter"] } tracing-flame = "0.2.0" opentelemetry = "0.21.0" opentelemetry_sdk = { version = "0.21.2", features = ["rt-tokio"] } opentelemetry-jaeger = { version = "0.20.0", features = ["rt-tokio"] } tracing-opentelemetry = "0.22.0" lru-cache = "0.1.2" rusqlite = { git = "https://github.com/rusqlite/rusqlite", rev = "ccfbc28ae1edc3090fb1b331fdc145f052ec73b9", optional = true, features = ["bundled"] } parking_lot = { version = "0.12.1", optional = true } num_cpus = "1.16.0" threadpool = "1.8.1" # Used for ruma wrapper serde_html_form = "0.2.3" rocksdb = { version = "0.21.0", default-features = true, features = ["multi-threaded-cf", "zstd"], optional = true } thread_local = "1.1.7" # used for TURN server authentication hmac = "0.12.1" sha-1 = "0.10.1" sha2 = { version = "0.10.8" } # used for conduit's CLI and admin room command parsing clap = { version = "4.4.17", default-features = false, features = ["std", "derive", "help", "usage", "error-context"] } futures-util = { version = "0.3.30", default-features = false } # Used for reading the configuration from conduit.toml & environment variables figment = { version = "0.10.14", features = ["env", "toml"] } 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 } lazy_static = "1.4.0" async-trait = "0.1.77" # used for checking if an IP is in specific subnets / CIDR ranges ipaddress = "0.1.3" sd-notify = { version = "0.4.1", optional = true } [target.'cfg(unix)'.dependencies] nix = { version = "0.27.1", features = ["resource"] } [features] default = ["conduit_bin", "backend_rocksdb", "systemd", "zstd_compression"] backend_sqlite = ["sqlite"] backend_rocksdb = ["rocksdb"] jemalloc = ["tikv-jemalloc-ctl", "tikv-jemallocator"] sqlite = ["rusqlite", "parking_lot", "tokio/signal"] conduit_bin = ["axum"] systemd = ["sd-notify"] #gzip_compression = ["tower-http/compression-gzip"] zstd_compression = [] #brotli_compression = ["tower-http/compression-br"] #compression = ["tower-http/compression-full"] sha256_media = [] io_uring = ["rocksdb/io-uring"] [[bin]] name = "conduit" path = "src/main.rs" required-features = ["conduit_bin"] [lib] name = "conduit" path = "src/lib.rs" [package.metadata.deb] name = "matrix-conduit" maintainer = "strawberry " copyright = "2024, Timo Kösters " license-file = ["LICENSE", "3"] depends = "$auto, ca-certificates" extended-description = """\ a cool fork of Conduit, a Matrix homeserver written in Rust""" section = "net" priority = "optional" assets = [ ["debian/README.md", "usr/share/doc/matrix-conduit/README.Debian", "644"], ["README.md", "usr/share/doc/matrix-conduit/", "644"], ["target/release/conduit", "usr/sbin/matrix-conduit", "755"], ] conf-files = [ "/etc/matrix-conduit/conduit.toml" ] maintainer-scripts = "debian/" systemd-units = { unit-name = "matrix-conduit" } [profile.dev] debug = 0 lto = 'off' incremental = true # default release profile [profile.release] lto = 'thin' incremental = false opt-level = 3 overflow-checks = true strip = "symbols" panic = "abort" debug = 0 # high performance release profile which uses fat LTO across all crates, 1 codegen unit, max opt-level, and optimises across all crates [profile.release-high-perf] inherits = "release" lto = 'fat' codegen-units = 1 # For releases also try to max optimizations for dependencies: [profile.release-high-perf.build-override] debug = 0 opt-level = 3 codegen-units = 1 [profile.release-high-perf.package."*"] debug = 0 opt-level = 3 codegen-units = 1 [lints] workspace = true [workspace.lints.rust] missing_abi = "warn" # missing_docs = "warn" noop_method_call = "warn" pointer_structural_match = "warn" explicit_outlives_requirements = "warn" # unreachable_pub = "warn" unused_extern_crates = "warn" unused_import_braces = "warn" # unused_lifetimes = "warn" unused_qualifications = "warn" dead_code = "warn" [workspace.lints.clippy] suspicious = "warn" # assume deny in practice perf = "warn" # assume deny in practice redundant_clone = "warn" cloned_instead_of_copied = "warn" expl_impl_clone_on_copy = "warn" # pedantic = "warn" unnecessary_cast = "warn" cast_lossless = "warn" ptr_as_ptr = "warn" mut_mut = "warn" char_lit_as_u8 = "warn" dbg_macro = "warn" empty_structs_with_brackets = "warn" get_unwrap = "warn" # if_then_some_else_none = "warn" # let_underscore_must_use = "warn" # map_err_ignore = "warn" # missing_docs_in_private_items = "warn" negative_feature_names = "warn" pub_without_shorthand = "warn" rc_buffer = "warn" rc_mutex = "warn" redundant_feature_names = "warn" redundant_type_annotations = "warn" # ref_patterns = "warn" rest_pat_in_fully_bound_structs = "warn" str_to_string = "warn" # string_add = "warn" # string_slice = "warn" string_to_string = "warn" tests_outside_test_module = "warn" undocumented_unsafe_blocks = "warn" unneeded_field_pattern = "warn" unseparated_literal_suffix = "warn" # unwrap_used = "warn" # expect_used = "warn" wildcard_dependencies = "warn" # or_fun_call = "warn" unnecessary_lazy_evaluations = "warn"