# Keep alphabetically sorted [workspace.lints.rust] elided_lifetimes_in_paths = "warn" explicit_outlives_requirements = "warn" macro_use_extern_crate = "warn" missing_abi = "warn" noop_method_call = "warn" single_use_lifetimes = "warn" unreachable_pub = "warn" unsafe_op_in_unsafe_fn = "warn" unused_extern_crates = "warn" unused_import_braces = "warn" unused_lifetimes = "warn" unused_macro_rules = "warn" unused_qualifications = "warn" [workspace.lints.clippy] # Groups. Keep alphabetically sorted pedantic = { level = "warn", priority = -1 } # Lints. Keep alphabetically sorted as_conversions = "warn" assertions_on_result_states = "warn" dbg_macro = "warn" default_union_representation = "warn" deref_by_slicing = "warn" empty_drop = "warn" empty_structs_with_brackets = "warn" error_impl_error = "warn" filetype_is_file = "warn" float_cmp_const = "warn" format_push_string = "warn" get_unwrap = "warn" if_then_some_else_none = "warn" impl_trait_in_params = "warn" let_underscore_must_use = "warn" lossy_float_literal = "warn" mem_forget = "warn" missing_assert_message = "warn" mod_module_files = "warn" multiple_inherent_impl = "warn" mutex_atomic = "warn" negative_feature_names = "warn" non_zero_suggestions = "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" same_name_method = "warn" semicolon_inside_block = "warn" str_to_string = "warn" string_add = "warn" string_lit_chars_any = "warn" string_slice = "warn" string_to_string = "warn" suspicious_xor_used_as_pow = "warn" tests_outside_test_module = "warn" try_err = "warn" undocumented_unsafe_blocks = "warn" unnecessary_safety_comment = "warn" unnecessary_safety_doc = "warn" unnecessary_self_imports = "warn" unneeded_field_pattern = "warn" unseparated_literal_suffix = "warn" unused_result_ok = "warn" verbose_file_reads = "warn" wildcard_dependencies = "warn" # TODO: Remove these: missing_errors_doc = "allow" missing_panics_doc = "allow" [package] name = "grapevine" description = "A Matrix homeserver written in Rust" license = "Apache-2.0" version = "0.1.0" edition = "2021" # See also `rust-toolchain.toml` rust-version = "1.85.0" [lints] workspace = true # Keep sorted [dependencies] argon2 = "0.5.3" async-trait = "0.1.88" axum = { version = "0.7.9", default-features = false, features = ["form", "http1", "http2", "json", "matched-path", "tokio", "tracing"] } axum-extra = { version = "0.9.6", features = ["typed-header"] } axum-server = { git = "https://gitlab.computer.surgery/matrix/thirdparty/axum-server.git", rev = "v0.7.2+grapevine-1", version = "0.7.2", features = ["tls-rustls-no-provider"] } base64 = "0.22.1" bytes = "1.10.1" clap = { version = "4.5.42", default-features = false, features = ["std", "derive", "help", "usage", "error-context", "string", "wrap_help"] } futures-util = { version = "0.3.31", default-features = false } hmac = "0.12.1" html-escape = "0.2.13" http = "1.3.1" http-body-util = "0.1.3" hyper = "1.6.0" image = { version = "0.25.6", default-features = false, features = ["jpeg", "png", "gif"] } jsonwebtoken = "9.3.1" lru-cache = "0.1.2" num_cpus = "1.17.0" opentelemetry = "0.24.0" opentelemetry-jaeger-propagator = "0.3.0" opentelemetry-otlp = "0.17.0" opentelemetry-prometheus = "0.17.0" opentelemetry_sdk = { version = "0.24.1", features = ["rt-tokio"] } parking_lot = { version = "0.12.4", optional = true } phf = { version = "0.11.3", features = ["macros"] } pin-project-lite = "0.2.16" prometheus = "0.13.4" proxy-header = { version = "0.1.2", features = ["tokio"] } rand = "0.8.5" regex = "1.11.1" reqwest = { version = "0.12.22", default-features = false, features = ["http2", "rustls-tls-native-roots", "socks"] } ring = "0.17.14" rocksdb = { package = "rust-rocksdb", version = "0.42.1", features = ["lz4", "multi-threaded-cf", "zstd"], optional = true } rusqlite = { version = "0.34.0", optional = true, features = ["bundled"] } rustls = { version = "0.23.31", default-features = false, features = ["ring", "log", "logging", "std", "tls12"] } sd-notify = { version = "0.4.5", optional = true } serde = { version = "1.0.219", features = ["rc"] } serde_html_form = "0.2.7" serde_json = { version = "1.0.141", features = ["raw_value"] } serde_yaml = "0.9.34" sha-1 = "0.10.1" strum = { version = "0.27.2", features = ["derive"] } thiserror = "2.0.12" thread_local = "1.1.9" tokio = { version = "1.47.0", features = ["fs", "macros", "signal", "sync"] } toml = "0.8.23" tower = { version = "0.5.2", features = ["util"] } tower-http = { version = "0.6.6", features = ["add-extension", "cors", "sensitive-headers", "trace", "util"] } tracing = { version = "0.1.41", features = [] } tracing-flame = "0.2.0" tracing-opentelemetry = "0.25.0" tracing-subscriber = { version = "0.3.19", features = ["env-filter", "json"] } trust-dns-resolver = "0.23.2" xdg = "2.5.2" [dependencies.ruma] git = "https://github.com/ruma/ruma.git" rev = "c4f467781a7ef330dc0b7eb5d0d0cad77ebc3337" features = [ "compat-server-signing-key-version", "compat-empty-string-null", "compat-null", "compat-optional", "compat-unset-avatar", "compat-get-3pids", "compat-tag-info", "compat-optional-txn-pdus", "rand", "appservice-api-c", "client-api", "federation-api", "push-gateway-api-c", "state-res", "unstable-msc2448", "ring-compat", ] [target.'cfg(unix)'.dependencies] nix = { version = "0.29", features = ["resource", "time"] } [dev-dependencies] assert_cmd = "2.0.17" insta = { version = "1.43.1", features = ["filters", "json", "redactions"] } predicates = "3.1.3" tempfile = "3.20.0" [profile.dev.package.insta] opt-level = 3 [profile.dev.package.similar] opt-level = 3 [features] default = ["rocksdb", "sqlite", "systemd"] # Keep sorted rocksdb = ["dep:rocksdb"] sqlite = ["dep:rusqlite", "dep:parking_lot", "tokio/signal"] systemd = ["dep:sd-notify"] [profile.release-debug] inherits = "release" debug = true