-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
65 lines (63 loc) · 1.66 KB
/
Cargo.toml
File metadata and controls
65 lines (63 loc) · 1.66 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[package]
name = "workspace"
version = "0.1.0"
edition = "2024"
[dependencies]
# Regular dependencies
anyhow = "1.0.100"
askama = "0.15.0"
axum = "0.8.6"
base64 = "0.22"
axum-extra = { version = "0.12.0", features = ["cookie"] }
chrono = "0.4.42"
config = "0.15.18"
jsonwebtoken = { version = "10.0.0", features = ["aws_lc_rs"] }
juniper = { version = "0.17.1", features = ["uuid", "chrono"] }
juniper_axum = "0.3.0"
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
sea-orm = { version = "1.1.16", features = [
"sqlx-postgres",
"runtime-tokio-rustls",
"macros",
] }
sea-orm-migration = { version = "1.1.0", default-features = false, features = [
"runtime-tokio-rustls",
"sqlx-postgres",
"cli",
] }
serde = "1.0.228"
serde_json = "1.0.145"
sqlx = { version = "0.8", features = [
"postgres",
"runtime-tokio-rustls",
"uuid",
"chrono",
"macros",
"migrate",
] }
serde_yaml = "0.9.34"
thiserror = "2.0.17"
time = "0.3.44"
tokio = { version = "1.47.1", default-features = false, features = [
"macros",
"net",
"rt-multi-thread",
] }
tower = { version = "0.5.2", features = ["util"] }
tower-http = { version = "0.6.6", features = [
"trace",
"cors",
"sensitive-headers",
"fs",
] }
tracing = "0.1.41"
tracing-futures = "0.2.5"
tracing-subscriber = "0.3.20"
utoipa = { version = "5.4.0", features = ["axum_extras"] }
utoipa-swagger-ui = { version = "9.0.2", features = ["axum", "debug-embed"] }
uuid = { version = "1.18.1", features = ["v4"] }
[dev-dependencies]
insta = { version = "1.43.2", features = ["yaml"] }
mockall = "0.14.0"
regex = "1.11.3"
testcontainers-modules = { version = "0.15.0", features = ["postgres"] }