diff --git a/Cargo.toml b/Cargo.toml index 3352268e..946a5f9f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -50,6 +50,7 @@ openssl = "0.10" percent-encoding = "2.1" proc-macro2 = "1.0" quote = "1.0" +regex = "1.5" serde = "1.0" serde_json = "1.0" syn = { version = "1.0", features = [ "full", "visit-mut" ] } diff --git a/proxmox-api-macro/Cargo.toml b/proxmox-api-macro/Cargo.toml index 33863d29..55c70dc3 100644 --- a/proxmox-api-macro/Cargo.toml +++ b/proxmox-api-macro/Cargo.toml @@ -24,13 +24,11 @@ serde = { workspace = true, features = [ "derive" ] } serde_json.workspace = true [dev-dependencies.proxmox-schema] -version = "1.0.0" -path = "../proxmox-schema" +workspace = true features = [ "test-harness", "api-macro" ] [dev-dependencies.proxmox-router] -version = "1.0.0" -path = "../proxmox-router" +workspace = true features = [ "test-harness" ] # [features] diff --git a/proxmox-rest-server/Cargo.toml b/proxmox-rest-server/Cargo.toml index 1cc87181..78cf9297 100644 --- a/proxmox-rest-server/Cargo.toml +++ b/proxmox-rest-server/Cargo.toml @@ -25,7 +25,7 @@ log.workspace = true nix.workspace = true once_cell = "1.3.1" percent-encoding.workspace = true -regex = "1.5" +regex.workspace = true serde = { workspace = true, features = [ "derive" ] } serde_json.workspace = true tokio = { workspace = true, features = ["signal", "process"] } diff --git a/proxmox-schema/Cargo.toml b/proxmox-schema/Cargo.toml index fa48e706..116a19c9 100644 --- a/proxmox-schema/Cargo.toml +++ b/proxmox-schema/Cargo.toml @@ -12,7 +12,7 @@ exclude.workspace = true [dependencies] anyhow.workspace = true lazy_static.workspace = true -regex = "1.5" +regex.workspace = true serde.workspace = true serde_json.workspace = true textwrap = "0.16" diff --git a/proxmox-subscription/Cargo.toml b/proxmox-subscription/Cargo.toml index a624c6c3..ea64d715 100644 --- a/proxmox-subscription/Cargo.toml +++ b/proxmox-subscription/Cargo.toml @@ -15,7 +15,7 @@ base64.workspace = true hex.workspace = true lazy_static.workspace = true openssl.workspace = true -regex = "1.5" +regex.workspace = true serde.workspace = true serde_json.workspace = true diff --git a/proxmox-sys/Cargo.toml b/proxmox-sys/Cargo.toml index ab7283fa..04646e9e 100644 --- a/proxmox-sys/Cargo.toml +++ b/proxmox-sys/Cargo.toml @@ -16,7 +16,7 @@ lazy_static.workspace = true libc.workspace = true log.workspace = true nix.workspace = true -regex = "1.2" +regex.workspace = true serde_json.workspace = true serde = { workspace = true, features = [ "derive" ] } zstd = { workspace = true, optional = true}