-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
40 lines (38 loc) · 991 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[package]
name = "manta-api"
version = "0.1.0"
edition = "2021"
authors = ["Pheon Dev <devpheon@gmail.com>"]
license = "MIT OR Apache-2.0"
description = "Money Transfer Web API"
[dependencies]
tokio = { version = "1", features = ["full"] }
# -- Tracing
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# -- Json
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_with = {version = "3", features = ["time_0_3"]}
# -- Web
axum = "0.6"
tower-http = { version = "0.4", features = ["fs", "cors"] }
tower-cookies = "0.9"
# -- Data
sqlx = { version = "0.7", features = [ "runtime-tokio-rustls", "postgres", "uuid", "time" ] }
sqlb = "0.3" # Optional
# -- Crypt & Encoding
rand = "0.8"
hmac = "0.12"
sha2 = "0.10"
base64-url = "2"
# -- Others
lazy-regex = "3"
uuid = {version = "1", features = ["v4", "fast-rng"]}
time = "0.3"
async-trait = "0.1.68"
strum_macros = "0.25"
[dev-dependencies]
anyhow = "1"
httpc-test = "0.1"
serial_test = "2"