]> Untitled Git - lemmy.git/blob - server/Cargo.toml
43933e5318225890ad4e3c657b1232fac1e6cb12
[lemmy.git] / server / Cargo.toml
1 [package]
2 name = "lemmy_server"
3 version = "0.0.1"
4 authors = ["Dessalines <tyhou13@gmx.com>"]
5 edition = "2018"
6
7 [profile.release]
8 lto = true
9
10 [dependencies]
11 diesel = { version = "1.4.2", features = ["postgres","chrono", "r2d2", "64-column-tables"] }
12 diesel_migrations = "1.4.0"
13 dotenv = "0.15.0"
14 bcrypt = "0.7.0"
15 activitypub = "0.2.0"
16 chrono = "0.4.7"
17 failure = "0.1.8"
18 serde_json = "1.0.52"
19 serde = "1.0.105"
20 actix = "0.9.0"
21 actix-web = "2.0.0"
22 actix-files = "0.2.1"
23 actix-web-actors = "2.0.0"
24 actix-rt = "1.1.1"
25 log = "0.4.0"
26 env_logger = "0.7.1"
27 rand = "0.7.3"
28 strum = "0.18.0"
29 strum_macros = "0.18.0"
30 jsonwebtoken = "7.0.1"
31 regex = "1.3.5"
32 lazy_static = "1.3.0"
33 lettre = "0.9.3"
34 lettre_email = "0.9.4"
35 sha2 = "0.8.1"
36 rss = "1.9.0"
37 htmlescape = "0.3.1"
38 config = {version = "0.10.1", default-features = false, features = ["hjson"] }
39 percent-encoding = "2.1.0"
40 attohttpc = { version = "0.14.0", default-features = false, features = ["tls-rustls"] }
41 comrak = "0.7"
42 tokio = "0.2.20"
43 futures = "0.3.4"