-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
33 lines (31 loc) · 860 Bytes
/
Cargo.toml
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
28
29
30
31
32
33
[package]
name = "lako"
version = "0.1.0"
authors = ["Syaiful Bahri <[email protected]>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bcrypt = "0.9.0"
clap = "2.33.0"
chrono = { version = "0.4.11", features = ["serde"] }
diesel = { version = "1.4.3", features = ["postgres", "serde_json", "chrono", "r2d2"] }
failure = "0.1.8"
futures = "0.3.1"
gotham = "0.5.0"
gotham_derive = "0.5.0"
gotham_middleware_diesel = "0.2.0"
gotham_middleware_jwt = "0.5.0"
jsonwebtoken = "7.2.0"
mime = "0.3.15"
native-tls = "0.2.4"
lettre = "0.9"
lettre_email = "0.9"
log = "0.4.8"
thiserror = "^1.0"
tokio = { version = "0.2.6", features = ["full"] }
pretty_env_logger = "0.4"
serde = "1.0.104"
serde_derive = "1.0.104"
serde_json = "1.0.48"
validator = "0.10"
validator_derive = "0.10"