2022-02-08 13:27:36 +00:00
|
|
|
[package]
|
2022-02-10 11:23:06 +00:00
|
|
|
name = "iox_gitops_adapter"
|
2022-02-08 13:27:36 +00:00
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Luke Bond <luke.n.bond@gmail.com>"]
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# Prevent this from being published to crates.io!
|
|
|
|
publish = false
|
|
|
|
|
|
|
|
[[bin]]
|
2022-02-10 11:23:06 +00:00
|
|
|
name = "iox_gitops_adapter"
|
2022-02-08 13:27:36 +00:00
|
|
|
path = "src/main.rs"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
async-trait = "0.1"
|
|
|
|
chrono = "0.4.15"
|
|
|
|
clap = { version = "3", features = ["derive", "env"] }
|
|
|
|
dotenv = "0.15"
|
|
|
|
futures = "0.3"
|
2022-02-14 17:47:15 +00:00
|
|
|
k8s-openapi = { version = "0.14", features = ["v1_19", "schemars"], default-features = false }
|
2022-04-13 10:43:37 +00:00
|
|
|
kube = { version = "0.71", default-features = false, features = ["client", "rustls-tls", "derive"] }
|
2022-04-13 10:42:39 +00:00
|
|
|
kube-derive = { version = "0.71", default-features = false } # only needed to opt out of schema
|
2022-04-13 10:42:42 +00:00
|
|
|
kube-runtime = "0.71"
|
2022-04-20 11:12:17 +00:00
|
|
|
prost = "0.10"
|
2022-02-14 17:47:15 +00:00
|
|
|
schemars = { version = "0.8.8", features = ["derive"] }
|
2022-02-08 13:27:36 +00:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
serde_json = "1.0"
|
|
|
|
thiserror = "1.0"
|
2022-04-28 08:21:17 +00:00
|
|
|
tokio = { version = "1.18", features = ["rt-multi-thread", "macros", "parking_lot"] }
|
2022-04-20 11:12:17 +00:00
|
|
|
tonic = "0.7"
|
2022-04-12 16:49:50 +00:00
|
|
|
tracing = { version = "0.1" }
|
2022-02-08 13:27:36 +00:00
|
|
|
workspace-hack = { path = "../workspace-hack"}
|
|
|
|
trogging = { path = "../trogging", default-features = false, features = ["clap"] }
|
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
glob = "0.3.0"
|
2022-04-04 10:45:31 +00:00
|
|
|
pbjson-build = "0.3"
|
2022-04-20 11:12:17 +00:00
|
|
|
tonic-build = "0.7"
|
2022-02-08 13:27:36 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
assert_matches = "1.5"
|
|
|
|
parking_lot = { version = "0.11.1" }
|