-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (35 loc) · 812 Bytes
/
Cargo.toml
File metadata and controls
36 lines (35 loc) · 812 Bytes
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
[package]
name = "musical-desk"
version = "0.1.0"
edition = "2021"
[dependencies]
actix-web = "4"
serde = { version = "1", features = ["derive"] }
serde_json = "1.0"
sqlx = { version = "0.8", features = [
"runtime-tokio-rustls",
"postgres",
"chrono",
"bigdecimal",
] }
pretty_env_logger = "0.5.0"
log = { version = "0.4.22", features = ["serde", "std"] }
jwt = "0.16.0"
actix-cors = "0.7.0"
bcrypt = "0.17"
thiserror = "1.0.56"
hmac = "0.12.1"
sha2 = "0.10.8"
futures = "0.3.31"
chrono = { version = "0.4.40", features = ["serde"] }
actix-multipart = "0.7.2"
actix-files = "0.6.6"
async-stripe = { version = "=0.40.0", features = [
"runtime-tokio-hyper-rustls",
] }
dotenv = "0.15.0"
rand = "0.8"
cron = "0.12"
tokio = { version = "1", features = ["full"] }
qrcode = "0.14.1"
image = "0.25"