-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
57 lines (55 loc) · 1.79 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
49
50
51
52
53
54
55
56
57
[workspace.package]
version = "0.9.2"
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/amphitheatre-app/amphitheatre"
authors = [
"Eguo Wang <[email protected]>",
]
[workspace]
resolver = "2"
members = [
"apiserver",
"controllers",
"crdgen",
"resolver",
"resources",
"syncer",
"workflow",
]
# https://doc.rust-lang.org/cargo/reference/workspaces.html#the-workspacedependencies-table
[workspace.dependencies]
amp-builder = { path = "builder" }
amp-common = { git = "https://github.com/amphitheatre-app/common", tag = "v0.9.4" }
amp-resolver = { path = "resolver" }
amp-resources = { path = "resources" }
amp-workflow = { path = "workflow" }
anyhow = "1.0.94"
async-nats = "0.37.0"
async-trait = "0.1.83"
axum = { version = "0.7.9" }
chrono = "0.4.39"
clap = { version = "4.5.23", features = ["derive", "env"] }
dotenv = "0.15.0"
futures = "0.3.31"
k8s-metrics = "0.19.0"
k8s-openapi = { version = "0.23.0", default-features = false, features = ["schemars", "latest"] }
kube = { version = "0.96.0", default-features = false, features = ["runtime", "derive", "rustls-tls"] }
lazy_static = "1.5.0"
serde = { version = "1.0.216", features = ["derive"] }
serde_json = "1.0.133"
serde_yaml = "0.9.34+deprecated"
sha2 = "0.10.8"
tar = "0.4.43"
tempfile = "3.14.0"
thiserror = "1.0.69"
tokio = { version = "1.42.0", features = ["full"] }
tokio-stream = "0.1"
toml = "0.8.15"
tower-http = { version = "0.6.2", features = ["full"] }
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
url = "2.5.4"
utoipa = { version = "5.2.0", features = ["axum_extras", "uuid", "chrono", "macros"] }
utoipa-swagger-ui = { version = "8.0.3", features = ["axum", "reqwest"] }
uuid = { version = "1.11.0", features = ["serde", "v4", "fast-rng", "macro-diagnostics"] }