2020-03-15 02:05:40 +00:00
|
|
|
[package]
|
2020-03-20 03:24:39 +00:00
|
|
|
name = "relay"
|
2020-03-20 03:23:10 +00:00
|
|
|
description = "A simple activitypub relay"
|
2021-09-21 19:32:25 +00:00
|
|
|
version = "0.3.4"
|
2020-03-15 02:05:40 +00:00
|
|
|
authors = ["asonix <asonix@asonix.dog>"]
|
2020-03-20 03:23:10 +00:00
|
|
|
license-file = "LICENSE"
|
|
|
|
readme = "README.md"
|
2020-03-20 03:24:39 +00:00
|
|
|
repository = "https://git.asonix.dog/asonix/ap-relay"
|
2020-03-20 03:23:10 +00:00
|
|
|
keywords = ["activitypub", "relay"]
|
2020-03-15 02:05:40 +00:00
|
|
|
edition = "2018"
|
2020-03-20 18:40:18 +00:00
|
|
|
build = "src/build.rs"
|
2020-03-15 02:05:40 +00:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
anyhow = "1.0"
|
2021-02-11 00:00:11 +00:00
|
|
|
actix-rt = "2.0.2"
|
2021-09-18 17:55:39 +00:00
|
|
|
actix-web = { version = "4.0.0-beta.7", default-features = false }
|
2021-06-24 17:02:27 +00:00
|
|
|
actix-webfinger = "0.4.0-beta.3"
|
2021-02-11 00:00:11 +00:00
|
|
|
activitystreams = "0.7.0-alpha.10"
|
2020-09-07 21:51:02 +00:00
|
|
|
activitystreams-ext = "0.1.0-alpha.2"
|
2020-03-26 03:26:45 +00:00
|
|
|
ammonia = "3.1.0"
|
2020-05-22 02:42:56 +00:00
|
|
|
async-mutex = "1.0.1"
|
2020-12-29 17:27:14 +00:00
|
|
|
async-rwlock = "1.3.0"
|
2021-09-18 17:55:39 +00:00
|
|
|
awc = { version = "3.0.0-beta.6", default-features = false, features = ["rustls"] }
|
2020-10-10 17:38:37 +00:00
|
|
|
base64 = "0.13"
|
2020-12-23 18:06:15 +00:00
|
|
|
chrono = "0.4.19"
|
2021-03-28 20:02:26 +00:00
|
|
|
config = "0.11.0"
|
2020-03-15 02:05:40 +00:00
|
|
|
dotenv = "0.15.0"
|
2021-09-18 17:55:39 +00:00
|
|
|
futures-util = "0.3.17"
|
2020-09-07 18:34:29 +00:00
|
|
|
lru = "0.6.0"
|
2020-03-20 18:40:18 +00:00
|
|
|
mime = "0.3.16"
|
2021-09-18 20:47:10 +00:00
|
|
|
opentelemetry = { version = "0.16", features = ["rt-tokio"] }
|
2021-09-18 18:40:47 +00:00
|
|
|
opentelemetry-otlp = "0.9"
|
2021-03-28 20:02:26 +00:00
|
|
|
rand = "0.8"
|
2021-08-01 20:12:06 +00:00
|
|
|
rsa = "0.5"
|
|
|
|
rsa-magic-public-key = "0.4.0"
|
2020-03-15 02:05:40 +00:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
serde_json = "1.0"
|
2020-06-10 22:19:32 +00:00
|
|
|
sha2 = "0.9"
|
2021-02-10 04:05:06 +00:00
|
|
|
sled = "0.34.6"
|
2020-03-20 00:55:11 +00:00
|
|
|
structopt = "0.3.12"
|
2020-03-15 02:05:40 +00:00
|
|
|
thiserror = "1.0"
|
2021-09-18 17:55:39 +00:00
|
|
|
tracing = "0.1"
|
2021-09-21 16:21:06 +00:00
|
|
|
tracing-awc = "0.1.0-beta.4"
|
2021-09-18 17:55:39 +00:00
|
|
|
tracing-error = "0.1"
|
|
|
|
tracing-futures = "0.2"
|
|
|
|
tracing-log = "0.1"
|
2021-09-18 18:40:47 +00:00
|
|
|
tracing-opentelemetry = "0.15"
|
2021-09-18 17:55:39 +00:00
|
|
|
tracing-subscriber = { version = "0.2", features = ["ansi", "fmt"] }
|
2020-03-22 21:18:36 +00:00
|
|
|
uuid = { version = "0.8", features = ["v4", "serde"] }
|
2020-03-16 03:36:46 +00:00
|
|
|
|
2021-09-18 17:55:39 +00:00
|
|
|
[dependencies.background-jobs]
|
|
|
|
version = "0.10.0"
|
|
|
|
default-features = false
|
|
|
|
features = [
|
|
|
|
"background-jobs-actix",
|
|
|
|
"error-logging"
|
|
|
|
]
|
|
|
|
|
2021-09-18 17:57:29 +00:00
|
|
|
[dependencies.http-signature-normalization-actix]
|
2021-09-21 16:21:06 +00:00
|
|
|
version = "0.5.0-beta.9"
|
2021-09-18 17:57:29 +00:00
|
|
|
default-features = false
|
|
|
|
features = ["sha-2"]
|
|
|
|
|
|
|
|
[dependencies.tracing-actix-web]
|
2021-09-21 15:47:49 +00:00
|
|
|
version = "0.4.0-beta.13"
|
2021-09-18 17:55:39 +00:00
|
|
|
|
2020-03-20 18:40:18 +00:00
|
|
|
[build-dependencies]
|
|
|
|
anyhow = "1.0"
|
|
|
|
dotenv = "0.15.0"
|
2020-12-23 18:06:15 +00:00
|
|
|
ructe = { version = "0.13.0", features = ["sass", "mime03"] }
|
2021-09-20 17:49:07 +00:00
|
|
|
toml = "0.5.8"
|
2020-03-20 18:40:18 +00:00
|
|
|
|
2020-03-16 03:36:46 +00:00
|
|
|
[profile.dev.package.rsa]
|
|
|
|
opt-level = 3
|