-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
34 lines (31 loc) · 956 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
[package]
name = "rust-axum"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
async-trait = "0.1.73"
axum = { version = "0.6.20", features = ["macros"]}
lazy-regex = "3.0.1"
serde = { version = "1.0.188", features = ["derive"]}
serde_json = "1.0.105"
serde_with = "3.3.0"
strum_macros = "0.25.2"
tokio = { version = "1.32.0", features = ["full"]}
tower-cookies = "0.9"
tower-http = { version = "0.4", features = ["fs"]}
tracing = "0.1.37"
tracing-subscriber = { version = "0.3.17", features = ["env-filter"]}
uuid = { version = "1.4.1", features = ["v4", "fast-rng"]}
sqlx = { version = "0.6.3", features = ["runtime-tokio-rustls", "postgres", "uuid", "time"]}
serial_test = "2.0.0"
toml = "0.7.6"
sqlb = "0.3"
rand = "0.8.5"
hmac = "0.12.1"
sha2 = "0.10.7"
base64-url = "2.0.0"
time = "0.3.28"
[dev-dependencies]
anyhow = "1.0.75"
httpc-test = "0.1.5"