-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
77 lines (61 loc) · 1.92 KB
/
Cargo.toml
File metadata and controls
77 lines (61 loc) · 1.92 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
66
67
68
69
70
71
72
73
74
75
76
[package]
name = "container-engine"
version = "0.1.0"
edition = "2021"
description = "An open-source alternative to Google Cloud Run built with Rust & Axum"
license = "MIT"
repository = "https://github.com/ngocbd/Open-Container-Engine"
[dependencies]
lettre = "0.11"
serde_yaml = "0.9"
bytes = "1.5"
futures-util = "0.3"
tokio-stream = "0.1"
open = "5"
# Web framework
axum = { version = "0.7", features = ["macros", "tracing","ws"] }
tokio = { version = "1.0", features = ["full"] }
tower = { version = "0.4", features = ["util"] }
tower-http = { version = "0.5", features = ["fs", "trace", "cors"] }
# Database
sqlx = { version = "0.8", features = ["runtime-tokio-rustls", "postgres", "uuid", "chrono", "migrate"] }
# Kube client
kube = { version = "0.95", features = ["runtime", "derive"] }
k8s-openapi = { version = "0.23.0", features = ["v1_30", "schemars"] }
schemars = { version = "1" }
# Redis
redis = { version = "0.25", features = ["tokio-comp"] }
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# Logging and tracing
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# Configuration
config = "0.14"
clap = { version = "4.0", features = ["derive"] }
# Async utilities
futures = "0.3"
# HTTP client (for container registry operations)
reqwest = { version = "0.11", features = ["json"] }
# Authentication and security
bcrypt = "0.15"
jsonwebtoken = "9.0"
uuid = { version = "1.0", features = ["v4", "serde"] }
# Date and time
chrono = { version = "0.4", features = ["serde"] }
# Error handling
anyhow = "1.0"
thiserror = "1.0"
# Environment variables
dotenv = "0.15"
# Validation
validator = { version = "0.18", features = ["derive"] }
# Regex
regex = "1.0"
# OpenAPI documentation
utoipa = { version = "4.0", features = ["axum_extras", "chrono", "uuid"] }
utoipa-swagger-ui = { version = "4.0", features = ["axum"] }
[dev-dependencies]
tower-test = "0.4"
tempfile = "3.0"