-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
59 lines (53 loc) · 1.71 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
58
59
[package]
name = "gitops-operator"
version = "0.6.3"
authors = ["Gabriel Garrido <[email protected]>"]
edition = "2021"
license = "Apache-2.0"
publish = false
[[bin]]
doc = false
name = "gitops-operator"
path = "src/main.rs"
[lib]
path = "src/lib.rs"
[dependencies]
axum = "0.8.1"
tower-http = { version = "0.6.2", default-features = false, features = ["trace"] }
futures = "0.3.31"
tokio = { version = "1.42.0", features = ["macros", "rt-multi-thread", "full", "test-util"] }
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.19", features = ["json", "env-filter"] }
anyhow = "1.0.95"
serde = { version = "1.0.216", features = ["derive"] }
k8s-openapi = { version = "0.24.0", features = ["latest"] }
git2 = "0.20.0"
serde_yaml = "0.9.34"
base64 = "0.22.1"
tracing-bunyan-formatter = "0.3.10"
tracing-log = "0.2.0"
openssl = { version = '0.10', features = ["vendored"] }
uuid = { version = "1.11.0", features = ["v4"] }
reqwest = { version = "0.12.12", features = ["json", "blocking"] }
serde_json = "1.0.134"
tracing-opentelemetry = "0.28.0"
opentelemetry = "0.27.1"
opentelemetry_sdk = { version = "0.27.1", features = ["rt-tokio"] }
opentelemetry-otlp = { version = "0.27.0", features = ["tonic"] }
opentelemetry-semantic-conventions = "0.27.0"
axum-prometheus = "0.8.0"
[dependencies.kube]
version = "0.98.0"
features = ["runtime"]
[dev-dependencies]
mockito = "1.6.1"
wiremock = "0.6"
tokio = { version = "1.42.0", features = ["full", "test-util", "macros", "rt-multi-thread"] }
mockall = "0.12.1"
assert_matches = "1.5.0"
tempfile = "3.8.1"
tower = { version = "0.5.2", features = ["util"] }
# local testing: ignore
#git = "https://github.com/kube-rs/kube.git"
#rev = "9cdc8766863c1947b06e73eaf5604c4534975410"
#path = "../kube/kube"