]> Untitled Git - lemmy.git/blob - crates/apub/Cargo.toml
af07664fd9620b5eab2ddbf47aa733da2403ff82
[lemmy.git] / crates / apub / Cargo.toml
1 [package]
2 name = "lemmy_apub"
3 version = "0.13.5-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 [lib]
11 name = "lemmy_apub"
12 path = "src/lib.rs"
13 doctest = false
14
15 [dependencies]
16 lemmy_utils = { version = "=0.13.5-rc.6", path = "../utils" }
17 lemmy_apub_lib = { version = "=0.13.5-rc.6", path = "../apub_lib" }
18 lemmy_db_schema = { version = "=0.13.5-rc.6", path = "../db_schema" }
19 lemmy_db_views = { version = "=0.13.5-rc.6", path = "../db_views" }
20 lemmy_db_views_actor = { version = "=0.13.5-rc.6", path = "../db_views_actor" }
21 lemmy_api_common = { version = "=0.13.5-rc.6", path = "../api_common" }
22 lemmy_websocket = { version = "=0.13.5-rc.6", path = "../websocket" }
23 diesel = "1.4.8"
24 activitystreams = "0.7.0-alpha.11"
25 bcrypt = "0.10.1"
26 chrono = { version = "0.4.19", features = ["serde"] }
27 serde_json = { version = "1.0.68", features = ["preserve_order"] }
28 serde = { version = "1.0.130", features = ["derive"] }
29 serde_with = "1.10.0"
30 actix = "0.12.0"
31 actix-web = { version = "4.0.0-beta.9", default-features = false }
32 actix-rt = { version = "2.2.0", default-features = false }
33 awc = { version = "3.0.0-beta.8", default-features = false }
34 log = "0.4.14"
35 rand = "0.8.4"
36 strum = "0.21.0"
37 strum_macros = "0.21.1"
38 url = { version = "2.2.2", features = ["serde"] }
39 percent-encoding = "2.1.0"
40 http = "0.2.5"
41 http-signature-normalization-actix = { version = "0.5.0-beta.10", default-features = false, features = ["server", "sha-2"] }
42 tokio = "1.12.0"
43 futures = "0.3.17"
44 itertools = "0.10.1"
45 uuid = { version = "0.8.2", features = ["serde", "v4"] }
46 sha2 = "0.9.8"
47 async-trait = "0.1.51"
48 anyhow = "1.0.44"
49 thiserror = "1.0.29"
50 background-jobs = "0.9.0"
51 reqwest = { version = "0.11.4", features = ["json"] }
52 html2md = "0.2.13"
53
54 [dev-dependencies]
55 serial_test = "0.5.1"
56 assert-json-diff = "2.0.1"