-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
26 lines (24 loc) · 850 Bytes
/
Cargo.toml
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
[package]
name = "account_book"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
axum ={version="0.6.15",features=["headers","multipart","ws"]}
bb8 = "0.8"
diesel = "2"
diesel-async = { version = "0.2", features = ["postgres", "bb8"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1"
tokio = { version = "1.0", features = ["full"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
dotenvy = "0.15.7"
jsonwebtoken = "8.3.0"
chrono = "0.4.24"
uuid = {version='1.3.1',features=["v4"]}
tower = "0.4.13"
tower-http = {version="0.4.0",features=["fs","limit","cors"]}
axum-server = { version = "0.3", features = ["tls-rustls"] }
reqwest = { version = "0.11", features = ["json"] }
futures = "0.3.28"