diff --git a/harmony/Cargo.toml b/harmony/Cargo.toml index 634cbe9..ad57db1 100644 --- a/harmony/Cargo.toml +++ b/harmony/Cargo.toml @@ -77,9 +77,6 @@ harmony_secret = { path = "../harmony_secret" } askama.workspace = true sqlx.workspace = true inquire.workspace = true -brocade = { path = "../brocade" } -option-ext = "0.2.0" [dev-dependencies] pretty_assertions.workspace = true -assertor.workspace = true diff --git a/harmony/src/domain/hardware/mod.rs b/harmony/src/domain/hardware/mod.rs index a070b83..1b1a72c 100644 --- a/harmony/src/domain/hardware/mod.rs +++ b/harmony/src/domain/hardware/mod.rs @@ -12,11 +12,11 @@ pub type FirewallGroup = Vec; pub struct PhysicalHost { pub id: Id, pub category: HostCategory, - pub network: Vec, // FIXME: Don't use harmony_inventory_agent::NetworkInterface - pub storage: Vec, // FIXME: Don't use harmony_inventory_agent::StorageDrive + pub network: Vec, + pub storage: Vec, pub labels: Vec