mirror of
https://github.com/typeable/octopod.git
synced 2024-11-23 01:03:45 +03:00
5c7956ccae
* remove certificates deletion * rewrite check_value function * bump up chart+control scripts version Co-authored-by: Aleksei Sizov <a.sizov@typeable.io>
83 lines
1.6 KiB
TOML
83 lines
1.6 KiB
TOML
[package]
|
|
name = "helm-control-scripts"
|
|
version = "0.2.3"
|
|
authors = ["Aleksei Sizov <a.sizov@typeable.io>"]
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
structopt = "0.3"
|
|
log = "0.4"
|
|
env_logger = "0.8.4"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
serde_yaml = "0.8"
|
|
envy = "0.4"
|
|
yaml-rust = "0.4"
|
|
kube = { version = "0.58.1", features = ["derive", "jsonpatch"]}
|
|
k8s-openapi = { version = "0.12.0", features = ["v1_19"]}
|
|
tokio = { version = "1.7.0", features = ["full"] }
|
|
dkregistry = { git = "https://github.com/camallo/dkregistry-rs", rev = "854d0da53bef5dd85b5e901123e85d43af97c74e"} # Version in crates uses old tokio
|
|
regex = "1"
|
|
rusoto_core = "0.47.0"
|
|
rusoto_ecr = "0.47.0"
|
|
schemars = "0.8.6"
|
|
json-patch = "0.2.6"
|
|
|
|
[[bin]]
|
|
name = "create"
|
|
path = "src/create_update.rs"
|
|
|
|
[[bin]]
|
|
name = "update"
|
|
path = "src/create_update.rs"
|
|
|
|
[[bin]]
|
|
name = "archive"
|
|
path = "src/archive.rs"
|
|
|
|
[[bin]]
|
|
name = "info"
|
|
path = "src/info.rs"
|
|
|
|
[[bin]]
|
|
name = "cleanup"
|
|
path = "src/cleanup.rs"
|
|
|
|
[[bin]]
|
|
name = "check"
|
|
path = "src/check.rs"
|
|
|
|
[[bin]]
|
|
name = "archive_check"
|
|
path = "src/archive_check.rs"
|
|
|
|
[[bin]]
|
|
name = "init"
|
|
path = "src/init.rs"
|
|
|
|
[[bin]]
|
|
name = "config_check"
|
|
path = "src/config_check.rs"
|
|
|
|
[[bin]]
|
|
name = "app_overrides"
|
|
path = "src/app_overrides.rs"
|
|
|
|
[[bin]]
|
|
name = "deployment_overrides"
|
|
path = "src/deployment_overrides.rs"
|
|
|
|
[[bin]]
|
|
name = "deployment_keys"
|
|
path = "src/deployment_keys.rs"
|
|
|
|
[[bin]]
|
|
name = "app_keys"
|
|
path = "src/app_keys.rs"
|
|
|
|
[[bin]]
|
|
name = "unarchive"
|
|
path = "src/unarchive.rs"
|