hyaenidae/server/Cargo.toml

46 lines
1.4 KiB
TOML
Raw Normal View History

2020-12-16 02:40:41 +00:00
[package]
name = "hyaenidae-server"
version = "0.1.0"
authors = ["asonix <asonix@asonix.dog>"]
edition = "2018"
build = "src/build.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2021-01-06 08:21:37 +00:00
activitystreams = "0.7.0-alpha.8"
actix-session = "0.4.0"
actix-rt = "1.1.1"
actix-web = { version = "3.3.2", features = ["rustls", "compress"] }
actix-webfinger = "0.3.0"
2020-12-16 02:40:41 +00:00
anyhow = "1.0.35"
2021-01-06 08:21:37 +00:00
background-jobs = "0.8.0"
base64 = "0.13.0"
chrono = { version = "0.4.19", features = ["serde"] }
event-listener = "2.5.1"
futures = "0.3.11"
html-minifier = "3.0.8"
http-signature-normalization-actix = { version = "0.4.0", default-features = false, features = ["sha-2"] }
2020-12-16 02:40:41 +00:00
hyaenidae-accounts = { version = "0.1.0", path = "../accounts" }
2021-01-06 08:21:37 +00:00
hyaenidae-profiles = { version = "0.1.0", path = "../profiles" }
2020-12-16 02:40:41 +00:00
hyaenidae-toolkit = { version = "0.1.0", path = "../toolkit" }
2021-01-06 08:21:37 +00:00
log = "0.4"
2020-12-16 02:40:41 +00:00
mime = "0.3.16"
2021-01-06 08:21:37 +00:00
once_cell = "1.5.2"
rand = "0.7"
rsa = "0.3.0"
rsa-magic-public-key = "0.2.1"
rsa-pem = "0.2.0"
2021-01-06 08:21:37 +00:00
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
sha2 = "0.9"
2020-12-16 02:40:41 +00:00
sled = { version = "0.34.6", features = ["compression"] }
2021-01-06 08:21:37 +00:00
structopt = "0.3"
2020-12-16 02:40:41 +00:00
thiserror = "1.0"
2021-01-17 21:08:34 +00:00
tracing-subscriber = { version = "0.2.15", features = ["env-filter"] }
2021-01-06 08:21:37 +00:00
url = { version = "2.2.0", features = ["serde"] }
uuid = { version = "0.8.1", features = ["serde", "v4"] }
2020-12-16 02:40:41 +00:00
[build-dependencies]
ructe = { version = "0.13.0", features = ["mime03", "sass"] }