]> Untitled Git - lemmy.git/blob - crates/apub/Cargo.toml
Version 0.12.2-rc.1
[lemmy.git] / crates / apub / Cargo.toml
1 [package]
2 name = "lemmy_apub"
3 version = "0.12.2-rc.1"
4 edition = "2018"
5 description = "A link aggregator for the fediverse"
6 license = "AGPL-3.0"
7
8 [lib]
9 name = "lemmy_apub"
10 path = "src/lib.rs"
11 doctest = false
12
13 [dependencies]
14 lemmy_utils = { version = "=0.12.2-rc.1", path = "../utils" }
15 lemmy_apub_lib = { version = "=0.12.2-rc.1", path = "../apub_lib" }
16 lemmy_db_queries = { version = "=0.12.2-rc.1", path = "../db_queries" }
17 lemmy_db_schema = { version = "=0.12.2-rc.1", path = "../db_schema" }
18 lemmy_db_views = { version = "=0.12.2-rc.1", path = "../db_views" }
19 lemmy_db_views_actor = { version = "=0.12.2-rc.1", path = "../db_views_actor" }
20 lemmy_api_common = { version = "=0.12.2-rc.1", path = "../api_common" }
21 lemmy_websocket = { version = "=0.12.2-rc.1", path = "../websocket" }
22 diesel = "1.4.7"
23 activitystreams = "0.7.0-alpha.11"
24 bcrypt = "0.10.1"
25 chrono = { version = "0.4.19", features = ["serde"] }
26 serde_json = { version = "1.0.66", features = ["preserve_order"] }
27 serde = { version = "1.0.129", features = ["derive"] }
28 serde_with = "1.9.4"
29 actix = "0.12.0"
30 actix-web = { version = "4.0.0-beta.8", default-features = false }
31 actix-rt = { version = "2.2.0", default-features = false }
32 awc = { version = "3.0.0-beta.7", default-features = false }
33 log = "0.4.14"
34 rand = "0.8.4"
35 strum = "0.21.0"
36 strum_macros = "0.21.1"
37 url = { version = "2.2.2", features = ["serde"] }
38 percent-encoding = "2.1.0"
39 openssl = "0.10.36"
40 http = "0.2.4"
41 http-signature-normalization-actix = { version = "0.5.0-beta.7", default-features = false, features = ["sha-2"] }
42 http-signature-normalization-reqwest = { version = "0.2.0", default-features = false, features = ["sha-2"] }
43 base64 = "0.13.0"
44 tokio = "1.10.1"
45 futures = "0.3.16"
46 itertools = "0.10.1"
47 uuid = { version = "0.8.2", features = ["serde", "v4"] }
48 sha2 = "0.9.5"
49 async-trait = "0.1.51"
50 anyhow = "1.0.43"
51 thiserror = "1.0.26"
52 background-jobs = "0.9.0"
53 reqwest = { version = "0.11.4", features = ["json"] }
54 lazy_static = "1.4.0"
55