]> Untitled Git - lemmy.git/blob - server/Cargo.toml
52a9bae8e9e041a986a5faf250597931bbf1b198
[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.4", features = ["postgres","chrono","r2d2","64-column-tables","serde_json"] }
12 diesel_migrations = "1.4.0"
13 dotenv = "0.15.0"
14 activitystreams = "0.6.2"
15 activitystreams-new = { git = "https://git.asonix.dog/asonix/activitystreams-sketch" }
16 activitystreams-ext = { git = "https://git.asonix.dog/asonix/activitystreams-ext" }
17 bcrypt = "0.8.0"
18 chrono = { version = "0.4.7", features = ["serde"] }
19 serde_json = { version = "1.0.52", features = ["preserve_order"]}
20 failure = "0.1.8"
21 serde = { version = "1.0.105", features = ["derive"] }
22 actix = "0.9.0"
23 actix-web = "2.0.0"
24 actix-files = "0.2.1"
25 actix-web-actors = "2.0.0"
26 actix-rt = "1.1.1"
27 log = "0.4.0"
28 env_logger = "0.7.1"
29 rand = "0.7.3"
30 strum = "0.18.0"
31 strum_macros = "0.18.0"
32 jsonwebtoken = "7.0.1"
33 regex = "1.3.5"
34 lazy_static = "1.3.0"
35 lettre = "0.9.3"
36 lettre_email = "0.9.4"
37 sha2 = "0.8.1"
38 rss = "1.9.0"
39 htmlescape = "0.3.1"
40 url = { version = "2.1.1", features = ["serde"] }
41 config = {version = "0.10.1", default-features = false, features = ["hjson"] }
42 percent-encoding = "2.1.0"
43 attohttpc = { version = "0.14.0", default-features = false, features = ["tls-rustls"] }
44 comrak = "0.7"
45 openssl = "0.10"
46 http = "0.2.1"
47 http-signature-normalization = "0.5.1"
48 base64 = "0.12.1"
49 tokio = "0.2.21"
50 futures = "0.3.5"
51 itertools = "0.9.0"
52 uuid = { version = "0.8", features = ["serde", "v4"] }