aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: b8e27428cbfcc05645aa85ba2b5085685281a71f (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.17"
chrono = "0.4"
env_logger = "0.11"
hex = "0.4"
hmac = "0.12"
http-body-util = "0.1"
hyper = { version = "1.6", features = ["full"] }
hyper-util = { version = "0.1", features = ["full"] }
log = "0.4"
minijinja = { version = "2.7", features = ["loader"] }
rand = { version = "0.9", features = ["os_rng"] }
rand_core = "0.9"
rusqlite = { version = "0.32", features = ["chrono"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_urlencoded = "0.7"
sha2 = "0.10"
tokio = { version = "1", features = ["full"] }
tokio-rusqlite = "0.6"
tokio-util = { version = "0.7", features = ["codec"] }
url = "2.5"