-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (43 loc) · 1.2 KB
/
Cargo.toml
File metadata and controls
44 lines (43 loc) · 1.2 KB
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
34
35
36
37
38
39
40
41
42
43
44
[package]
name = "bookkeep-web"
version = "0.1.0"
authors = ["sidju <contact@sidju.se>"]
license = "MIT"
edition = "2021"
[dependencies]
dotenvy = "*"
# Web serving framework
hyper = { version = "1", features = ["full"] }
hyper-util = { version = "0.1", features = ["full"] }
http-body-util = "0.1"
# Multithreaded/asynchronous runtime (version controlled by hyper)
tokio = { version = "1", features = ["full"] }
# Helpers for asynchronous programming (version controlled by hyper)
futures = "*"
# Serialization (syntax versions set by main lib)
serde = { version = "1.0", features = ["derive"] }
serde_json = "*"
serde_urlencoded = "*"
# SQL database driver
sqlx = { version = "0.7", features = [
# Runtime configuration
"runtime-tokio",
"tls-rustls",
# Enable features
"macros",
"migrate",
"postgres",
# Add non-standard data format support
"time",
"json",
"rust_decimal",
]}
rust_decimal = "*"
time = { version = "*", features = ["serde-human-readable"] }
# Auth library
# (We'll later custom write the request/response code for this in raw hyper)
openidconnect = { version = "3.4"} #, default-features = false }
reqwest = "*"
nanoid = "0.4"
# And a templating library, to render html
askama = "0.12.1"