]> Untitled Git - lemmy.git/blob - server/Cargo.toml
Merge branch 'upgrade-actor-web-1.0.x' of https://github.com/Jonnnh/lemmy into Jonnnh...
[lemmy.git] / server / Cargo.toml
1 [package]
2 name = "lemmy_server"
3 version = "0.0.1"
4 authors = ["Dessalines <happydooby@gmail.com>"]
5 edition = "2018"
6
7 [dependencies]
8 diesel = { version = "1.4.2", features = ["postgres","chrono"] }
9 diesel_migrations = "1.4.0"
10 dotenv = "0.14.1"
11 bcrypt = "0.5.0"
12 activitypub = "0.1.5"
13 chrono = { version = "0.4.7", features = ["serde"] }
14 failure = "0.1.5"
15 serde_json = "1.0.40"
16 serde = { version = "1.0.94", features = ["derive"] }
17 actix = "0.8.3"
18 actix-web = "1.0"
19 actix-files = "0.1.3"
20 actix-web-actors = "1.0"
21 env_logger = "0.6.2"
22 rand = "0.7.0"
23 strum = "0.15.0"
24 strum_macros = "0.15.0"
25 jsonwebtoken = "6.0.1"
26 regex = "1.1.9"
27 lazy_static = "1.3.0"
28