relay/Cargo.toml

56 lines
1.6 KiB
TOML
Raw Normal View History

2020-03-15 02:05:40 +00:00
[package]
2020-03-20 03:24:39 +00:00
name = "relay"
description = "A simple activitypub relay"
2021-08-01 20:13:25 +00:00
version = "0.2.17"
2020-03-15 02:05:40 +00:00
authors = ["asonix <asonix@asonix.dog>"]
license-file = "LICENSE"
readme = "README.md"
2020-03-20 03:24:39 +00:00
repository = "https://git.asonix.dog/asonix/ap-relay"
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-06-26 23:14:43 +00:00
actix-web = { version = "4.0.0-beta.7", default-features = false, features = ["compress-brotli", "compress-gzip", "compress-zstd"] }
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"
ammonia = "3.1.0"
2020-05-22 02:42:56 +00:00
async-mutex = "1.0.1"
async-rwlock = "1.3.0"
2021-06-26 23:14:43 +00:00
awc = { version = "3.0.0-beta.6", default-features = false, features = ["compress-brotli", "compress-gzip", "compress-zstd", "rustls"] }
2021-02-11 00:00:11 +00:00
background-jobs = "0.9.0"
2020-10-10 17:38:37 +00:00
base64 = "0.13"
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-08-01 20:12:06 +00:00
env_logger = "0.9.0"
2021-02-11 00:00:11 +00:00
futures = "0.3.12"
2021-06-24 17:02:27 +00:00
http-signature-normalization-actix = { version = "0.5.0-beta.6", default-features = false, features = ["sha-2"] }
2020-03-15 02:05:40 +00:00
log = "0.4"
2020-09-07 18:34:29 +00:00
lru = "0.6.0"
2020-03-20 18:40:18 +00:00
mime = "0.3.16"
2020-03-15 02:05:40 +00:00
pretty_env_logger = "0.4.0"
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"
structopt = "0.3.12"
2020-03-15 02:05:40 +00:00
thiserror = "1.0"
2020-03-22 21:18:36 +00:00
uuid = { version = "0.8", features = ["v4", "serde"] }
2020-03-16 03:36:46 +00:00
2020-03-20 18:40:18 +00:00
[build-dependencies]
anyhow = "1.0"
dotenv = "0.15.0"
ructe = { version = "0.13.0", features = ["sass", "mime03"] }
2020-03-20 18:40:18 +00:00
2020-03-16 03:36:46 +00:00
[profile.dev.package.rsa]
opt-level = 3