hyaenidae/Cargo.toml

63 lines
1.8 KiB
TOML

[package]
name = "hyaenidae"
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]
activitystreams = "0.7.0-alpha.8"
actix-session = "0.5.0-beta.1"
actix-rt = "2.1.0"
actix-web = { version = "4.0.0-beta.1", features = ["rustls", "compress"] }
actix-webfinger = "0.4.0-beta.3"
anyhow = "1.0.35"
awc = { version = "3.0.0-beta.4", features = ["rustls", "compress"] }
background-jobs = "0.9.0"
base64 = "0.13.0"
chrono = { version = "0.4.19", features = ["serde"] }
event-listener = "2.5.1"
fluent = "0.15.0"
fluent-syntax = "0.11.0"
futures = "0.3.11"
html-minifier = "3.0.8"
http-signature-normalization-actix = { version = "0.5.0-beta.4", default-features = false, features = ["sha-2"] }
hyaenidae-accounts = { version = "0.1.0", path = "./accounts" }
hyaenidae-profiles = { version = "0.1.0", path = "./profiles" }
hyaenidae-toolkit = { version = "0.1.0", path = "./toolkit" }
i18n-embed-fl = "0.5.0"
i18n-embed = { version = "0.12.0", features = ["fluent-system"] }
log = "0.4"
mime = "0.3.16"
once_cell = "1.5.2"
rand = "0.8"
rsa = "0.4.0"
rsa-magic-public-key = "0.3.0"
rsa-pem = "0.3.0"
rust-embed = "5"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_urlencoded = "0.7"
sha2 = "0.9"
sled = { version = "0.34.6", features = ["compression"] }
structopt = "0.3"
thiserror = "1.0"
tracing-subscriber = { version = "0.2.15", features = ["env-filter"] }
unic-langid = "0.9.0"
url = { version = "2.2.0", features = ["serde"] }
uuid = { version = "0.8.1", features = ["serde", "v4"] }
[build-dependencies]
ructe = { version = "0.13.0", features = ["mime03", "sass"] }
[workspace]
members = [
"accounts",
"content",
"profiles",
"toolkit",
"toolkit-examples"
]