diff --git a/proxmox-installer-common/Cargo.toml b/proxmox-installer-common/Cargo.toml index ef7a614..b97ccaf 100644 --- a/proxmox-installer-common/Cargo.toml +++ b/proxmox-installer-common/Cargo.toml @@ -10,7 +10,7 @@ homepage = "https://www.proxmox.com" [dependencies] anyhow.workspace = true regex.workspace = true -serde.workspace = true +serde = { workspace = true, features = [ "derive" ] } serde_json.workspace = true serde_plain.workspace = true diff --git a/proxmox-post-hook/Cargo.toml b/proxmox-post-hook/Cargo.toml index 3acea6c..a2ca206 100644 --- a/proxmox-post-hook/Cargo.toml +++ b/proxmox-post-hook/Cargo.toml @@ -14,5 +14,5 @@ homepage = "https://www.proxmox.com" anyhow.workspace = true proxmox-auto-installer.workspace = true proxmox-installer-common = { workspace = true, features = ["http"] } -serde.workspace = true +serde = { workspace = true, features = ["derive"] } serde_json.workspace = true diff --git a/proxmox-tui-installer/Cargo.toml b/proxmox-tui-installer/Cargo.toml index c7a0e30..4b11576 100644 --- a/proxmox-tui-installer/Cargo.toml +++ b/proxmox-tui-installer/Cargo.toml @@ -9,7 +9,7 @@ homepage = "https://www.proxmox.com" [dependencies] proxmox-installer-common.workspace = true -serde.workspace = true +serde = { workspace = true, features = ["derive"] } serde_json.workspace = true regex.workspace = true