apub/apub-actix-web/Cargo.toml
Aode (lion) 52fbfcdb82
All checks were successful
continuous-integration/drone/push Build is passing
Bump versions
2021-12-05 15:19:45 -06:00

22 lines
924 B
TOML

[package]
name = "apub-actix-web"
description = "Utilities for building activitypub servers"
version = "0.2.0"
license = "AGPL-3.0"
authors = ["asonix <asonix@asonix.dog>"]
repository = "https://git.asonix.dog/asonix/apub"
keywords = ["activitypub", "activitystreams", "federation", "async"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
apub-core = { version = "0.2.0", path = "../apub-core/" }
apub-privatekey = { version = "0.2.0", path = "../apub-privatekey/" }
apub-publickey = { version = "0.2.0", path = "../apub-publickey/" }
actix-web = { version = "4.0.0-beta.12", default-features = false }
http-signature-normalization-actix = { version = "0.5.0-beta.12", default-features = false, features = ["server", "digest"] }
serde = { version = "1", features = ["derive"] }
thiserror = "1"
url = { version = "2", features = ["serde"] }