]> Untitled Git - lemmy.git/blob - crates/apub_lib/Cargo.toml
Move code to apub library (#1795)
[lemmy.git] / crates / apub_lib / Cargo.toml
1 [package]
2 name = "lemmy_apub_lib"
3 version = "0.13.0"
4 edition = "2018"
5 description = "A link aggregator for the fediverse"
6 license = "AGPL-3.0"
7
8 [dependencies]
9 lemmy_utils = { version = "=0.13.0", path = "../utils" }
10 lemmy_apub_lib_derive = { version = "=0.13.0", path = "../apub_lib_derive" }
11 activitystreams = "0.7.0-alpha.11"
12 serde = { version = "1.0.130", features = ["derive"] }
13 async-trait = "0.1.51"
14 url = { version = "2.2.2", features = ["serde"] }
15 serde_json = { version = "1.0.68", features = ["preserve_order"] }
16 anyhow = "1.0.44"
17 reqwest = { version = "0.11.4", features = ["json"] }
18 log = "0.4.14"
19 base64 = "0.13.0"
20 openssl = "0.10.36"
21 lazy_static = "1.4.0"
22 http = "0.2.5"
23 sha2 = "0.9.8"
24 actix-web = { version = "4.0.0-beta.9", default-features = false }
25 http-signature-normalization-actix = { version = "0.5.0-beta.10", default-features = false, features = ["server", "sha-2"] }
26 http-signature-normalization-reqwest = { version = "0.2.0", default-features = false, features = ["sha-2"] }
27 background-jobs = "0.10.0"