]> Untitled Git - lemmy.git/blob - Cargo.toml
Refactoring apub code
[lemmy.git] / Cargo.toml
1 [package]
2 name = "lemmy_server"
3 version = "0.13.5-rc.7"
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.13.5-rc.7", path = "./crates/api" }
35 lemmy_api_crud = { version = "=0.13.5-rc.7", path = "./crates/api_crud" }
36 lemmy_apub = { version = "=0.13.5-rc.7", path = "./crates/apub" }
37 lemmy_apub_lib = { version = "=0.13.5-rc.7", path = "./crates/apub_lib" }
38 lemmy_utils = { version = "=0.13.5-rc.7", path = "./crates/utils" }
39 lemmy_db_schema = { version = "=0.13.5-rc.7", path = "./crates/db_schema" }
40 lemmy_db_views = { version = "=0.13.5-rc.7", path = "./crates/db_views" }
41 lemmy_db_views_moderator = { version = "=0.13.5-rc.7", path = "./crates/db_views_moderator" }
42 lemmy_db_views_actor = { version = "=0.13.5-rc.7", path = "./crates/db_views_actor" }
43 lemmy_api_common = { version = "=0.13.5-rc.7", path = "crates/api_common" }
44 lemmy_websocket = { version = "=0.13.5-rc.7", path = "./crates/websocket" }
45 lemmy_routes = { version = "=0.13.5-rc.7", 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 log = "0.4.14"
53 env_logger = "0.9.0"
54 strum = "0.21.0"
55 url = { version = "2.2.2", features = ["serde"] }
56 openssl = "0.10.36"
57 http-signature-normalization-actix = { version = "0.5.0-beta.10", default-features = false, features = ["sha-2"] }
58 tokio = { version = "1.12.0", features = ["sync"] }
59 anyhow = "1.0.44"
60 reqwest = { version = "0.11.4", features = ["json"] }
61 activitystreams = "0.7.0-alpha.11"
62 actix-rt = { version = "2.2.0", default-features = false }
63 serde_json = { version = "1.0.68", features = ["preserve_order"] }
64 clokwerk = "0.3.5"
65 doku = "0.10.1"
66
67 [dev-dependencies.cargo-husky]
68 version = "1.5.0"
69 default-features = false # Disable features which are enabled by default
70 features = ["user-hooks"]
71
72 [package.metadata.cargo-udeps.ignore]
73 development = ["cargo-husky"]