-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (41 loc) · 1.2 KB
/
Cargo.toml
File metadata and controls
44 lines (41 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 = "Cards"
version = "1.0.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
async-trait = "0.1.88"
axum = "0.8.4"
bcrypt = "0.17.0"
chrono = { version = "0.4.41", features = ["serde"] }
dotenv = "0.15.0"
futures = "0.3.31"
itertools = "0.14.0"
jsonwebtoken = "9.3.1"
rand = "0.9.1"
rcgen = { version = "0.14.2", optional = true }
rmp-serde = "1.3.0"
rustls = { version = "0.23.29", default-features = false, features = ["ring"] }
rustls-pemfile = "2.2.0"
rustls-pki-types = "1.12.0"
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.141"
sqlx = { version = "0.8.6", features = [
"chrono",
"json",
"migrate",
"postgres",
"runtime-tokio-rustls",
"uuid"
] }
tokio = { version = "1.45.1", features = ["full"] }
tokio-rustls = { version = "0.26.2", default-features = false }
tokio-tungstenite = "0.28.0"
tower-http = { version = "0.6.8", features = ["cors"] }
tracing = "0.1.41"
tracing-appender = "0.2.3"
tracing-subscriber = { version = "0.3.20", features = ["env-filter", "json"] }
uuid = { version = "1.16.0", features = ["v4", "serde"] }
[features]
default = []
dev-certs = ["rcgen"]