mirror of
https://git.proxmox.com/git/pve-installer
synced 2025-08-11 18:31:10 +00:00
tree-wide: add serde derive
where actually needed
Fixes building each crate on their own. In a full build (e.g. `make deb`), everything pulls in serde with the `derive` feature anyway and thus does not exihibit any build failures. Signed-off-by: Christoph Heiss <c.heiss@proxmox.com>
This commit is contained in:
parent
524c796ceb
commit
e3ecca02d9
@ -10,7 +10,7 @@ homepage = "https://www.proxmox.com"
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow.workspace = true
|
anyhow.workspace = true
|
||||||
regex.workspace = true
|
regex.workspace = true
|
||||||
serde.workspace = true
|
serde = { workspace = true, features = [ "derive" ] }
|
||||||
serde_json.workspace = true
|
serde_json.workspace = true
|
||||||
serde_plain.workspace = true
|
serde_plain.workspace = true
|
||||||
|
|
||||||
|
@ -14,5 +14,5 @@ homepage = "https://www.proxmox.com"
|
|||||||
anyhow.workspace = true
|
anyhow.workspace = true
|
||||||
proxmox-auto-installer.workspace = true
|
proxmox-auto-installer.workspace = true
|
||||||
proxmox-installer-common = { workspace = true, features = ["http"] }
|
proxmox-installer-common = { workspace = true, features = ["http"] }
|
||||||
serde.workspace = true
|
serde = { workspace = true, features = ["derive"] }
|
||||||
serde_json.workspace = true
|
serde_json.workspace = true
|
||||||
|
@ -9,7 +9,7 @@ homepage = "https://www.proxmox.com"
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
proxmox-installer-common.workspace = true
|
proxmox-installer-common.workspace = true
|
||||||
serde.workspace = true
|
serde = { workspace = true, features = ["derive"] }
|
||||||
serde_json.workspace = true
|
serde_json.workspace = true
|
||||||
regex.workspace = true
|
regex.workspace = true
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user