-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
48 lines (43 loc) · 1.75 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
46
47
48
[package]
name = "texas"
version = "1.0.0"
edition = "2021"
default-run = "texas"
[features]
docker = []
openapi = []
[dependencies]
axum = { version = "0.7", features = ["http2", "macros"] }
dotenv = { version = "0.15", features = ["clap"] }
tokio = { version = "1.41", features = ["rt-multi-thread"] }
serde = { version = "1", features = ["derive"] }
reqwest = { version = "0.12", default-features = false, features = ["rustls-tls", "json"] }
log = { version = "0.4", features = ["std"] }
thiserror = "1"
jsonwebtoken = "8.3.0"
jsonwebkey = { version = "0.3.5", features = ["jwt-convert"] }
uuid = { version = "1.11.0", features = ["v4"] }
serde_json = "1.0.132"
utoipa = { version = "5.2.0", features = ["axum_extras", "openapi_extensions"] }
utoipa-axum = "0.1.2"
utoipa-swagger-ui = { version = "8.0.3", features = ["axum"] }
tracing = { version = "0.1.40", features = [] }
tracing-opentelemetry = "0.27.0"
opentelemetry = { version = "0.26.0", features = ["metrics", "trace"] }
opentelemetry-http = "0.26.0"
opentelemetry_sdk = { version = "0.26.0", features = ["trace", "rt-tokio"] }
opentelemetry-otlp = { version = "0.26.0", features = ["metrics", "trace"] }
opentelemetry-semantic-conventions = { version = "0.27.0", features = ["semconv_experimental"] }
tracing-subscriber = "0.3.18"
tower-http = { version = "0.6.1", features = ["trace"] }
moka = { version = "0.12.8", features = ["future"] }
derivative = "2.2.0"
[dev-dependencies]
testcontainers = { version = "0.23.1", features = ["http_wait", "properties-config"] }
jsonwebkey = { version = "0.3.5", features = ["jwt-convert", "generate"] }
env_logger = "0.11"
[build-dependencies]
chrono = { version = "0.4", default-features = false, features = ["now"] }
[[bin]]
name = "gen-openapi"
path = "./src/export_openapi_spec.rs"