forked from NationTech/harmony
Introduce new modules to handle Kubernetes resources specifically focusing on Deployment resources. Added `K8sResource` and `K8sDeployment` structs along with necessary traits implementations for interpretation and execution in the inventory system. Also, fixed module reordering issues in opnsense-config-xml and corrected some fields types within its data structures.
30 lines
864 B
TOML
30 lines
864 B
TOML
[package]
|
|
name = "harmony"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
libredfish = "0.1.1"
|
|
reqwest = {version = "0.11", features = ["blocking", "json"] }
|
|
russh = "0.45.0"
|
|
rust-ipmi = "0.1.1"
|
|
semver = "1.0.23"
|
|
serde = { version = "1.0.209", features = ["derive"] }
|
|
serde_json = "1.0.127"
|
|
tokio = { workspace = true }
|
|
derive-new = { workspace = true }
|
|
log = { workspace = true }
|
|
env_logger = { workspace = true }
|
|
async-trait = { workspace = true }
|
|
cidr = { workspace = true }
|
|
opnsense-config = { path = "../opnsense-config" }
|
|
opnsense-config-xml = { path = "../opnsense-config-xml" }
|
|
harmony_macros = { path = "../harmony_macros" }
|
|
harmony_types = { path = "../harmony_types" }
|
|
uuid = { workspace = true }
|
|
url = { workspace = true }
|
|
kube = { workspace = true }
|
|
k8s-openapi = { workspace = true }
|
|
serde_yaml = { workspace = true }
|
|
http = { workspace = true }
|