relay/Cargo.toml

59 lines
1.5 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-02-10 04:05:06 +00:00
version = "0.2.0"
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"
2020-05-21 21:24:56 +00:00
actix-rt = "1.1.1"
2021-02-10 04:05:06 +00:00
actix-web = { version = "3.3.2", default-features = false, features = ["rustls", "compress"] }
2020-09-14 00:46:13 +00:00
actix-webfinger = "0.3.0"
2021-02-10 04:05:06 +00:00
activitystreams = "0.7.0-alpha.9"
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"
2020-03-22 21:18:36 +00:00
async-trait = "0.1.24"
2020-09-14 00:46:13 +00:00
background-jobs = "0.8.0"
2020-10-10 17:38:37 +00:00
base64 = "0.13"
chrono = "0.4.19"
config = "0.10.1"
2020-03-15 02:05:40 +00:00
dotenv = "0.15.0"
env_logger = "0.8.2"
2020-03-15 02:05:40 +00:00
futures = "0.3.4"
2020-09-14 00:46:13 +00:00
http-signature-normalization-actix = { version = "0.4.0", 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-19 22:19:05 +00:00
num_cpus = "1.12"
2020-03-15 02:05:40 +00:00
pretty_env_logger = "0.4.0"
2020-03-16 03:36:46 +00:00
rand = "0.7"
2020-07-25 14:33:35 +00:00
rsa = "0.3"
rsa-magic-public-key = "0.2.0"
rsa-pem = "0.2.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-15 16:29:01 +00:00
ttl_cache = "0.5.1"
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