-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
46 lines (39 loc) · 1.04 KB
/
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
41
42
43
44
45
[package]
name = "tracker"
version = "0.1.0"
edition = "2021"
publish = false
[dependencies]
migration = { path = "./migration" }
axum = { version = "0.6", features = ["macros", "headers"] }
tokio = { version = "1.0", features = ["full"] }
tower = { version = "0.4", features = ["util"] }
tower-http = { version = "0.4.0", features = ["trace","fs"] }
tower-cookies = "0.9"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
metrics = "0.20.1"
metrics-exporter-prometheus = "0.11.0"
axum-macros = "0.3"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1"
dotenvy = "0.15"
http = "0.2.9"
headers = "0.3"
jsonwebtoken = "8"
once_cell = "1"
oauth2 = "4.1"
oxide-auth = "0.5"
uuid = { version = "1", features = ["v4", "fast-rng", ] }
lazy-regex = "2.5.0"
tera = "1"
sea-orm = { version = "0.11.2", features = ["sqlx-postgres", "runtime-tokio-rustls","with-uuid"] }
axum_csrf = "0.6"
[dev-dependencies]
anyhow = "1"
httpc-test = "0.1.1"
[profile.release]
strip = true
lto = true
opt-level = "z"
codegen-units = 1