aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 3ae686740b326b7bfac341d7c392b77325bce473 (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
[package]
name = "budget"
version = "0.1.0"
authors = ["Joris <joris@guyonvarch.me>"]
edition = "2018"

[dependencies]
bcrypt = "0.9"
chrono = "0.4"
env_logger = "0.8"
hyper = "0.13"
lettre = "0.9"
lettre_email = "0.9"
log = "0.4"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_urlencoded = "0.7"
sha2 = "0.9"
sqlx = { version = "0.4", features = ["runtime-tokio-rustls", "sqlite", "chrono"] }
sqlx-core = "0.4"
structopt = "0.3"
tera = { version = "1.6", features = ["builtins"] }
tokio = { version = "0.2", features = ["macros", "sync", "rt-threaded"] }
tokio-util = { version = "0.3", features = ["codec"] }
url = "2.2"
uuid = { version = "0.8", features = ["v4"] }