]> Untitled Git - lemmy.git/blob - Cargo.toml
Consolidate reqwest clients, use reqwest-middleware for tracing
[lemmy.git] / Cargo.toml
1 [package]
2 name = "lemmy_server"
3 version = "0.14.4-rc.4"
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 doctest = false
12
13 [profile.dev]
14 debug = 0
15
16 [workspace]
17 members = [
18     "crates/api",
19     "crates/api_crud",
20     "crates/api_common",
21     "crates/apub_lib",
22     "crates/apub_lib_derive",
23     "crates/apub",
24     "crates/utils",
25     "crates/db_schema",
26     "crates/db_views",
27     "crates/db_views_actor",
28     "crates/db_views_actor",
29     "crates/websocket",
30     "crates/routes"
31 ]
32
33 [dependencies]
34 lemmy_api = { version = "=0.14.4-rc.4", path = "./crates/api" }
35 lemmy_api_crud = { version = "=0.14.4-rc.4", path = "./crates/api_crud" }
36 lemmy_apub = { version = "=0.14.4-rc.4", path = "./crates/apub" }
37 lemmy_apub_lib = { version = "=0.14.4-rc.4", path = "./crates/apub_lib" }
38 lemmy_utils = { version = "=0.14.4-rc.4", path = "./crates/utils" }
39 lemmy_db_schema = { version = "=0.14.4-rc.4", path = "./crates/db_schema" }
40 lemmy_db_views = { version = "=0.14.4-rc.4", path = "./crates/db_views" }
41 lemmy_db_views_moderator = { version = "=0.14.4-rc.4", path = "./crates/db_views_moderator" }
42 lemmy_db_views_actor = { version = "=0.14.4-rc.4", path = "./crates/db_views_actor" }
43 lemmy_api_common = { version = "=0.14.4-rc.4", path = "crates/api_common" }
44 lemmy_websocket = { version = "=0.14.4-rc.4", path = "./crates/websocket" }
45 lemmy_routes = { version = "=0.14.4-rc.4", path = "./crates/routes" }
46 diesel = "1.4.8"
47 diesel_migrations = "1.4.0"
48 chrono = { version = "0.4.19", features = ["serde"] }
49 serde = { version = "1.0.130", features = ["derive"] }
50 actix = "0.12.0"
51 actix-web = { version = "4.0.0-beta.9", default-features = false, features = ["rustls"] }
52 tracing = "0.1.29"
53 tracing-actix-web = { version = "0.5.0-beta.3", default-features = false }
54 tracing-error = "0.2.0"
55 tracing-log = "0.1.2"
56 tracing-subscriber = { version = "0.3.2", features = ["env-filter"] }
57 strum = "0.21.0"
58 url = { version = "2.2.2", features = ["serde"] }
59 openssl = "0.10.36"
60 http-signature-normalization-actix = { version = "0.5.0-beta.10", default-features = false, features = ["sha-2"] }
61 tokio = { version = "1.12.0", features = ["sync"] }
62 anyhow = "1.0.44"
63 reqwest = { version = "0.11.4", features = ["json"] }
64 reqwest-middleware = "0.1.2"
65 reqwest-tracing = "0.2.0"
66 activitystreams = "0.7.0-alpha.11"
67 actix-rt = { version = "2.2.0", default-features = false }
68 serde_json = { version = "1.0.68", features = ["preserve_order"] }
69 clokwerk = "0.3.5"
70 doku = "0.10.1"
71
72 [dev-dependencies.cargo-husky]
73 version = "1.5.0"
74 default-features = false # Disable features which are enabled by default
75 features = ["user-hooks"]
76
77 [package.metadata.cargo-udeps.ignore]
78 development = ["cargo-husky"]