forked from mirrors/relay
77 lines
2 KiB
TOML
77 lines
2 KiB
TOML
[package]
|
|
name = "relay"
|
|
description = "A simple activitypub relay"
|
|
version = "0.3.7"
|
|
authors = ["asonix <asonix@asonix.dog>"]
|
|
license-file = "LICENSE"
|
|
readme = "README.md"
|
|
repository = "https://git.asonix.dog/asonix/ap-relay"
|
|
keywords = ["activitypub", "relay"]
|
|
edition = "2021"
|
|
build = "src/build.rs"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
anyhow = "1.0"
|
|
actix-rt = "2.0.2"
|
|
actix-web = { version = "4.0.0-beta.7", default-features = false }
|
|
actix-webfinger = "0.4.0-beta.3"
|
|
activitystreams = "0.7.0-alpha.10"
|
|
activitystreams-ext = "0.1.0-alpha.2"
|
|
ammonia = "3.1.0"
|
|
async-rwlock = "1.3.0"
|
|
awc = { version = "3.0.0-beta.6", default-features = false, features = ["rustls"] }
|
|
base64 = "0.13"
|
|
chrono = "0.4.19"
|
|
config = "0.11.0"
|
|
dashmap = "4.0.2"
|
|
dotenv = "0.15.0"
|
|
futures-util = "0.3.17"
|
|
lru = "0.7.0"
|
|
mime = "0.3.16"
|
|
opentelemetry = { version = "0.16", features = ["rt-tokio"] }
|
|
opentelemetry-otlp = "0.9"
|
|
rand = "0.8"
|
|
rsa = "0.5"
|
|
rsa-magic-public-key = "0.4.0"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
sha2 = "0.9"
|
|
sled = "0.34.6"
|
|
structopt = "0.3.12"
|
|
thiserror = "1.0"
|
|
tracing = "0.1"
|
|
tracing-awc = { version = "0.1.0-beta.7", git = "https://git.asonix.dog/asonix/tracing-awc" }
|
|
tracing-error = "0.2"
|
|
tracing-futures = "0.2"
|
|
tracing-log = "0.1"
|
|
tracing-opentelemetry = "0.16"
|
|
tracing-subscriber = { version = "0.3", features = ["ansi", "env-filter", "fmt"] }
|
|
uuid = { version = "0.8", features = ["v4", "serde"] }
|
|
|
|
[dependencies.background-jobs]
|
|
version = "0.11.0"
|
|
default-features = false
|
|
features = [
|
|
"background-jobs-actix",
|
|
"error-logging"
|
|
]
|
|
|
|
[dependencies.http-signature-normalization-actix]
|
|
version = "0.5.0-beta.11"
|
|
default-features = false
|
|
features = ["client", "server", "sha-2"]
|
|
|
|
[dependencies.tracing-actix-web]
|
|
version = "0.5.0-beta.2"
|
|
git = "https://github.com/caizixian/tracing-actix-web"
|
|
|
|
[build-dependencies]
|
|
anyhow = "1.0"
|
|
dotenv = "0.15.0"
|
|
ructe = { version = "0.13.0", features = ["sass", "mime03"] }
|
|
toml = "0.5.8"
|
|
|
|
[profile.dev.package.rsa]
|
|
opt-level = 3
|