2020-02-15 21:42:21 +00:00
|
|
|
[package]
|
2020-04-10 05:53:20 +00:00
|
|
|
name = "conduit"
|
|
|
|
description = "A Matrix homeserver written in Rust"
|
2020-08-24 09:32:15 +00:00
|
|
|
license = "Apache-2.0"
|
2020-02-15 21:42:21 +00:00
|
|
|
authors = ["timokoesters <timo@koesters.xyz>"]
|
2020-04-10 05:53:20 +00:00
|
|
|
homepage = "https://conduit.rs"
|
2020-12-13 12:41:00 +00:00
|
|
|
repository = "https://gitlab.com/famedly/conduit"
|
2020-04-10 05:53:20 +00:00
|
|
|
readme = "README.md"
|
|
|
|
version = "0.1.0"
|
2020-02-15 21:42:21 +00:00
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2020-08-25 09:49:51 +00:00
|
|
|
# Used to handle requests
|
2020-07-26 03:08:00 +00:00
|
|
|
# TODO: This can become optional as soon as proper configs are supported
|
2021-07-14 09:28:24 +00:00
|
|
|
# rocket = { git = "https://github.com/SergioBenitez/Rocket.git", rev = "801e04bd5369eb39e126c75f6d11e1e9597304d8", features = ["tls"] } # Used to handle requests
|
|
|
|
rocket = { version = "0.5.0-rc.1", features = ["tls"] } # Used to handle requests
|
2020-08-25 09:49:51 +00:00
|
|
|
|
|
|
|
# Used for matrix spec type definitions and helpers
|
2021-08-24 17:10:31 +00:00
|
|
|
#ruma = { git = "https://github.com/ruma/ruma", rev = "f5ab038e22421ed338396ece977b6b2844772ced", 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/DevinR528/ruma", rev = "2215049b60a1c3358f5a52215adf1e7bb88619a1", 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 21:17:58 +00: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 09:49:51 +00:00
|
|
|
|
2020-12-05 20:03:43 +00:00
|
|
|
# Used for long polling and federation sender, should be the same as rocket::tokio
|
2021-07-29 06:36:01 +00:00
|
|
|
tokio = "1.8.2"
|
2020-08-25 09:49:51 +00:00
|
|
|
# Used for storing data permanently
|
2021-06-12 13:04:28 +00:00
|
|
|
sled = { version = "0.34.6", 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"] }
|
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
|
|
|
|
bytes = "1.0.1"
|
2020-08-25 09:49:51 +00:00
|
|
|
# Used for rocket<->ruma conversions
|
2021-07-29 06:36:01 +00:00
|
|
|
http = "0.2.4"
|
2020-08-25 09:49:51 +00:00
|
|
|
# Used to find data directory for default db path
|
2021-07-29 06:36:01 +00:00
|
|
|
directories = "3.0.2"
|
2020-08-25 09:49:51 +00:00
|
|
|
# Used for ruma wrapper
|
2021-03-04 11:29:08 +00:00
|
|
|
serde_json = { version = "1.0.64", features = ["raw_value"] }
|
2020-12-08 09:33:44 +00:00
|
|
|
# Used for appservice registration files
|
2021-03-04 11:29:08 +00:00
|
|
|
serde_yaml = "0.8.17"
|
2020-08-25 09:49:51 +00:00
|
|
|
# Used for pdu definition
|
2021-07-29 06:36:01 +00:00
|
|
|
serde = "1.0.126"
|
2020-08-25 09:49:51 +00:00
|
|
|
# Used for secure identifiers
|
2021-07-29 06:36:01 +00:00
|
|
|
rand = "0.8.4"
|
2020-08-25 09:49:51 +00:00
|
|
|
# Used to hash passwords
|
2020-12-05 20:03:43 +00:00
|
|
|
rust-argon2 = "0.8.3"
|
2020-08-25 09:49:51 +00:00
|
|
|
# Used to send requests
|
2021-07-29 06:36:01 +00:00
|
|
|
reqwest = { version = "0.11.4", default-features = false, features = ["rustls-tls-native-roots", "socks"] }
|
2021-04-16 01:07:27 +00:00
|
|
|
# Custom TLS verifier
|
2021-07-29 06:36:01 +00:00
|
|
|
rustls = { version = "0.19.1", features = ["dangerous_configuration"] }
|
2021-04-16 01:07:27 +00:00
|
|
|
rustls-native-certs = "0.5.0"
|
|
|
|
webpki = "0.21.0"
|
2020-08-25 09:49:51 +00:00
|
|
|
# Used for conduit::Error type
|
2021-07-29 06:36:01 +00:00
|
|
|
thiserror = "1.0.26"
|
2020-08-25 09:49:51 +00:00
|
|
|
# Used to generate thumbnails for images
|
2021-03-04 11:29:08 +00:00
|
|
|
image = { version = "0.23.14", default-features = false, features = ["jpeg", "png", "gif"] }
|
2020-08-25 09:49:51 +00:00
|
|
|
# Used to encode server public key
|
2020-12-05 20:03:43 +00:00
|
|
|
base64 = "0.13.0"
|
2020-08-25 09:49:51 +00:00
|
|
|
# Used when hashing the state
|
2021-03-04 11:29:08 +00:00
|
|
|
ring = "0.16.20"
|
2020-09-23 10:03:08 +00:00
|
|
|
# Used when querying the SRV record of other servers
|
2021-07-29 06:36:01 +00:00
|
|
|
trust-dns-resolver = "0.20.3"
|
2020-12-23 18:41:54 +00:00
|
|
|
# Used to find matching events for appservices
|
2021-07-29 06:36:01 +00:00
|
|
|
regex = "1.5.4"
|
2021-02-07 16:38:45 +00:00
|
|
|
# jwt jsonwebtokens
|
|
|
|
jsonwebtoken = "7.2.0"
|
2021-02-28 11:41:03 +00:00
|
|
|
# Performance measurements
|
2021-07-29 06:36:01 +00:00
|
|
|
tracing = { version = "0.1.26", features = ["release_max_level_warn"] }
|
|
|
|
tracing-subscriber = "0.2.19"
|
|
|
|
tracing-opentelemetry = "0.14.0"
|
|
|
|
tracing-flame = "0.1.0"
|
2021-08-19 09:01:18 +00:00
|
|
|
opentelemetry = { version = "0.16.0", features = ["rt-tokio"] }
|
|
|
|
opentelemetry-jaeger = { version = "0.15.0", features = ["rt-tokio"] }
|
2021-03-13 15:30:12 +00:00
|
|
|
pretty_env_logger = "0.4.0"
|
2021-06-30 07:52:01 +00:00
|
|
|
lru-cache = "0.1.2"
|
2021-07-14 07:07:08 +00:00
|
|
|
rusqlite = { version = "0.25.3", optional = true, features = ["bundled"] }
|
|
|
|
parking_lot = { version = "0.11.1", optional = true }
|
|
|
|
crossbeam = { version = "0.8.1", optional = true }
|
2021-07-15 11:29:08 +00:00
|
|
|
num_cpus = "1.13.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 }
|
2020-07-26 03:08:00 +00:00
|
|
|
|
|
|
|
[features]
|
2021-07-30 10:11:06 +00:00
|
|
|
default = ["conduit_bin", "backend_sqlite"]
|
2021-06-12 13:04:28 +00:00
|
|
|
backend_sled = ["sled"]
|
2021-07-14 07:07:08 +00:00
|
|
|
backend_sqlite = ["sqlite"]
|
2021-07-29 18:17:47 +00:00
|
|
|
backend_heed = ["heed", "crossbeam"]
|
2021-07-15 11:29:08 +00:00
|
|
|
sqlite = ["rusqlite", "parking_lot", "crossbeam", "tokio/signal"]
|
2020-07-26 03:08:00 +00:00
|
|
|
conduit_bin = [] # TODO: add rocket to this when it is optional
|
|
|
|
|
|
|
|
[[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 = [
|
2020-11-13 19:50:58 +00:00
|
|
|
["debian/README.Debian", "usr/share/doc/matrix-conduit/", "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]
|
|
|
|
lto = 'thin'
|
|
|
|
incremental = true
|
|
|
|
|
|
|
|
[profile.release]
|
2021-08-22 21:05:32 +00:00
|
|
|
lto = 'thin'
|
2021-08-13 15:20:40 +00:00
|
|
|
incremental = true
|
2021-08-22 21:05:32 +00:00
|
|
|
|
|
|
|
codegen-units=32
|
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]
|
|
|
|
opt-level = 3
|
|
|
|
[profile.release.package."*"]
|
|
|
|
opt-level = 3
|