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

[dependencies]
bcrypt = "0.15"
chrono = "0.4"
clap = { version = "4.3", features = ["derive"] }
env_logger = "0.10"
hmac = "0.12"
hex = "0.4"
hyper = { version = "0.14", features = ["full"] }
log = "0.4"
rand = { version = "0.8", features = ["getrandom"] }
rand_core = "0.6.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_urlencoded = "0.7"
sha2 = "0.10"
sqlx = { version = "0.7", features = ["runtime-tokio-rustls", "sqlite", "chrono"] }
sqlx-core = "0.7"
tera = { version = "1.19", features = ["builtins"] }
tokio = { version = "1", features = ["full"] }
tokio-util = { version = "0.7", features = ["codec"] }
url = "2.4"
uuid = { version = "1.4", features = ["v4"] }