summaryrefslogtreecommitdiffstats
path: root/server/Cargo.toml
blob: 6e14e81a29db8a8734952c63a6492f250917cc79 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
[package]
name = "lemmy_server"
version = "0.0.1"
authors = ["Dessalines <happydooby@gmail.com>"]
edition = "2018"

[dependencies]
diesel = { version = "1.4.2", features = ["postgres","chrono"] }
diesel_migrations = "*"
dotenv = "0.9.0"
bcrypt = "0.3"
activitypub = "0.1.4"
chrono = { version = "0.4", features = ["serde"] }
failure = "0.1.5"
serde_json = "*"
serde = { version = "1.0", features = ["derive"] }
actix = "*"
actix-web = "*"
env_logger = "*"
rand = "0.6.5"
strum = "0.14.0"
strum_macros = "0.14.0"
jsonwebtoken = "*"
regex = "*"
lazy_static = "*"
reqwest = "*"
openssl = { version = "0.10", features = ["vendored"] }