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
|
2020-12-05 20:03:43 +00:00
|
|
|
rocket = { git = "https://github.com/SergioBenitez/Rocket.git", rev = "1f1f44f336e5a172361fc1860461bb03667b1ed2", features = ["tls"] } # Used to handle requests
|
|
|
|
#rocket = { git = "https://github.com/timokoesters/Rocket.git", branch = "empty_parameters", default-features = false, features = ["tls"] }
|
2020-08-25 09:49:51 +00:00
|
|
|
|
|
|
|
# Used for matrix spec type definitions and helpers
|
2020-12-31 13:40:49 +00:00
|
|
|
ruma = { git = "https://github.com/ruma/ruma", features = ["rand", "client-api", "federation-api", "unstable-pre-spec", "unstable-synapse-quirks", "unstable-exhaustive-types"], rev = "210b6dd823ba89c5a44c3c9d913d377c4b54c896" }
|
2020-12-22 17:45:35 +00:00
|
|
|
# ruma = { git = "https://github.com/DevinR528/ruma", features = ["rand", "client-api", "federation-api", "unstable-exhaustive-types", "unstable-pre-spec", "unstable-synapse-quirks"], branch = "verified-export" }
|
2020-10-27 23:10:09 +00:00
|
|
|
# ruma = { path = "../ruma/ruma", features = ["unstable-exhaustive-types", "rand", "client-api", "federation-api", "unstable-pre-spec", "unstable-synapse-quirks"] }
|
2020-08-25 09:49:51 +00:00
|
|
|
|
|
|
|
# Used when doing state resolution
|
2020-12-08 09:33:44 +00:00
|
|
|
# state-res = { git = "https://github.com/timokoesters/state-res", branch = "timo-spec-comp", features = ["unstable-pre-spec"] }
|
2020-12-31 13:40:49 +00:00
|
|
|
# TODO: remove the gen-eventid feature
|
2021-01-06 13:52:30 +00:00
|
|
|
state-res = { git = "https://github.com/ruma/state-res", branch = "no-db", features = ["unstable-pre-spec", "gen-eventid"] }
|
2020-12-22 17:45:35 +00:00
|
|
|
# state-res = { path = "../../state-res", features = ["unstable-pre-spec", "gen-eventid"] }
|
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
|
|
|
|
tokio = { version = "0.2.23" }
|
2020-08-25 09:49:51 +00:00
|
|
|
# Used for storing data permanently
|
2020-12-05 20:03:43 +00:00
|
|
|
sled = { version = "0.34.6", default-features = false }
|
2020-08-25 09:49:51 +00:00
|
|
|
# Used for emitting log entries
|
|
|
|
log = "0.4.11"
|
|
|
|
# Used for rocket<->ruma conversions
|
|
|
|
http = "0.2.1"
|
|
|
|
# Used to find data directory for default db path
|
|
|
|
directories = "3.0.1"
|
2020-12-31 13:40:49 +00:00
|
|
|
|
2020-08-25 09:49:51 +00:00
|
|
|
# Used for ruma wrapper
|
2020-12-05 20:03:43 +00:00
|
|
|
serde_json = { version = "1.0.60", features = ["raw_value"] }
|
2020-12-08 09:33:44 +00:00
|
|
|
# Used for appservice registration files
|
|
|
|
serde_yaml = "0.8.14"
|
2020-08-25 09:49:51 +00:00
|
|
|
# Used for pdu definition
|
2020-12-05 20:03:43 +00:00
|
|
|
serde = "1.0.117"
|
2020-08-25 09:49:51 +00:00
|
|
|
# Used for secure identifiers
|
|
|
|
rand = "0.7.3"
|
|
|
|
# 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
|
2020-12-05 20:03:43 +00:00
|
|
|
reqwest = "0.10.9"
|
2020-08-25 09:49:51 +00:00
|
|
|
# Used for conduit::Error type
|
2020-12-05 20:03:43 +00:00
|
|
|
thiserror = "1.0.22"
|
2020-08-25 09:49:51 +00:00
|
|
|
# Used to generate thumbnails for images
|
2020-12-05 20:03:43 +00:00
|
|
|
image = { version = "0.23.12", 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
|
2020-12-05 20:03:43 +00:00
|
|
|
ring = "0.16.19"
|
2020-09-23 10:03:08 +00:00
|
|
|
# Used when querying the SRV record of other servers
|
2020-12-05 20:03:43 +00:00
|
|
|
trust-dns-resolver = "0.19.6"
|
2020-12-23 18:41:54 +00:00
|
|
|
# Used to find matching events for appservices
|
|
|
|
regex = "1.4.2"
|
2021-02-07 16:38:45 +00:00
|
|
|
# jwt jsonwebtokens
|
|
|
|
jsonwebtoken = "7.2.0"
|
2020-07-26 03:08:00 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default = ["conduit_bin"]
|
|
|
|
conduit_bin = [] # TODO: add rocket to this when it is optional
|
2020-10-18 06:48:31 +00:00
|
|
|
tls_vendored = ["reqwest/native-tls-vendored"]
|
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 = [
|
2020-11-13 19:35:22 +00:00
|
|
|
["debian/env.local", "etc/matrix-conduit/local", "644"],
|
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 = [
|
2020-11-13 19:35:22 +00:00
|
|
|
"/etc/matrix-conduit/local"
|
2020-05-31 20:49:07 +00:00
|
|
|
]
|
|
|
|
maintainer-scripts = "debian/"
|
|
|
|
systemd-units = { unit-name = "matrix-conduit" }
|