-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
74 lines (66 loc) · 2.22 KB
/
Cargo.toml
File metadata and controls
74 lines (66 loc) · 2.22 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
[workspace]
members = [
"crates/gitea-client",
"crates/harbor-client",
]
resolver = "2"
[package]
name = "backend"
description = "Backend API and services for StackClass"
version = "1.3.9"
edition = "2024"
default-run = "stackclass-server"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "stackclass"
path = "src/lib.rs"
[[bin]]
name = "stackclass-server"
path = "src/bin/stackclass-server.rs"
[[bin]]
name = "openapi-generator"
path = "src/bin/openapi-generator.rs"
[dependencies]
# internal crates
gitea-client = { path = "crates/gitea-client" }
harbor-client = { path = "crates/harbor-client" }
anyhow = "1.0.102"
axum = { version = "0.8.9" }
axum-extra = {version = "0.12.6", features = ["typed-header"] }
base64 = "0.22.1"
bytes = "1.11.1"
chrono = { version = "0.4.44", features = ["serde"] }
clap = { version = "4.6.1", features = ["derive", "env"] }
dotenv = "0.15.0"
flate2 = "1.1.9"
fs_extra = "1.3.0"
futures = "0.3.32"
futures-util = "0.3.32"
ghrepo = "0.7.1"
hex = "0.4.3"
hmac = "0.13"
http-body-util = "0.1.3"
indexmap = {version = "2.14.0", features = ["serde"] }
jsonwebtoken = { version = "10.4.0", features = ["rust_crypto"] }
k8s-openapi = { version = "0.27", default-features = false, features = ["latest"] }
kube = { version = "3", default-features = false, features = ["runtime", "derive", "rustls-tls"] }
octocrab = "0.51.0"
reqwest = { version = "0.13.3", default-features = false, features = ["json", "stream"] }
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.149"
serde_yml = "0.0.12"
sha2 = "0.11"
sqlx = { version = "0.8.6", features = ["runtime-tokio-rustls", "postgres", "macros", "migrate", "chrono", "uuid"] }
subtle = "2.6.1"
tar = "0.4.46"
tempfile = "3.27.0"
thiserror = "2.0.18"
tokio = { version = "1.52.3", features = ["full"] }
tokio-stream = "0.1.18"
tower-http = { version = "0.6.11", features = ["cors"] }
tracing = "0.1.44"
tracing-subscriber = { version = "0.3.23", features = ["env-filter"] }
url = "2.5.8"
utoipa = { version = "5.5.0", features = ["axum_extras", "uuid", "chrono", "macros"] }
utoipa-swagger-ui = { version = "9.0.2", features = ["axum", "reqwest"] }
uuid = { version = "1.23.1", features = ["v7", "serde"] }