-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
29 lines (26 loc) · 993 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
[package]
name = "texas"
version = "0.1.0"
edition = "2021"
[features]
docker = []
openapi = []
[dependencies]
axum = { version = "0.7", features = ["http2", "macros"] }
clap = { version = "4", features = ["derive", "env"] }
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"] }
env_logger = "0.11"
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"] }
[dev-dependencies]
testcontainers = { version = "0.23.1", features = ["http_wait", "properties-config"] }