/ operator / Cargo.toml
Cargo.toml
 1  [package]
 2  name = "apibara-operator"
 3  version = "0.2.2"
 4  edition.workspace = true
 5  
 6  [lib]
 7  name = "apibara_operator"
 8  path = "src/lib.rs"
 9  
10  [[bin]]
11  name = "apibara-operator"
12  path = "src/bin.rs"
13  
14  [features]
15  default = ["operator"]
16  operator = []
17  
18  [dependencies]
19  apibara-observability = { path = "../observability" }
20  error-stack.workspace = true
21  clap.workspace = true
22  ctrlc.workspace = true
23  futures.workspace = true
24  k8s-openapi = { version = "0.18.0", features = ["v1_26", "api", "schemars"] }
25  kube = { version = "0.83.0", features = [
26      "client",
27      "derive",
28      "runtime",
29      "rustls-tls",
30  ], default-features = false }
31  schemars = "0.8.12"
32  serde.workspace = true
33  serde_json.workspace = true
34  serde_yaml = "0.9.22"
35  tokio.workspace = true
36  tokio-stream.workspace = true
37  tokio-util.workspace = true
38  tracing.workspace = true