]> Untitled Git - lemmy.git/blob - crates/apub_lib/Cargo.toml
a46d3c35613adfc06b1fc035700438fedfed283e
[lemmy.git] / crates / apub_lib / Cargo.toml
1 [package]
2 name = "lemmy_apub_lib"
3 version = "0.15.0-rc.6"
4 edition = "2018"
5 description = "A link aggregator for the fediverse"
6 license = "AGPL-3.0"
7 homepage = "https://join-lemmy.org/"
8 documentation = "https://join-lemmy.org/docs/en/index.html"
9
10 [dependencies]
11 lemmy_utils = { version = "=0.15.0-rc.6", path = "../utils" }
12 lemmy_apub_lib_derive = { version = "=0.15.0-rc.6", path = "../apub_lib_derive" }
13 activitystreams = "0.7.0-alpha.14"
14 serde = { version = "1.0.131", features = ["derive"] }
15 async-trait = "0.1.52"
16 url = { version = "2.2.2", features = ["serde"] }
17 serde_json = { version = "1.0.72", features = ["preserve_order"] }
18 anyhow = "1.0.51"
19 reqwest = { version = "0.11.7", features = ["json"] }
20 reqwest-middleware = "0.1.3"
21 tracing = "0.1.29"
22 base64 = "0.13.0"
23 openssl = "0.10.38"
24 once_cell = "1.8.0"
25 http = "0.2.5"
26 sha2 = "0.10.0"
27 actix-web = { version = "4.0.0-beta.14", default-features = false }
28 http-signature-normalization-actix = { version = "0.5.0-beta.14", default-features = false, features = ["server", "sha-2"] }
29 http-signature-normalization-reqwest = { version = "0.4.0", default-features = false, features = ["sha-2", "middleware"] }
30 background-jobs = "0.11.0"
31 diesel = "1.4.8"