diff --git a/Cargo.toml b/Cargo.toml index 8106ee46..1f699ed5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,6 +20,7 @@ members = [ "proxmox-openid", "proxmox-rest-server", "proxmox-router", + "proxmox-rrd", "proxmox-schema", "proxmox-section-config", "proxmox-serde", @@ -51,8 +52,10 @@ exclude = [ "debian" ] anyhow = "1.0" base32 = "0.4" base64 = "0.13" +bitflags = "1.2.1" bytes = "1.0" crc32fast = "1" +crossbeam-channel = "0.5" endian_trait = "0.6" env_logger = "0.10" flate2 = "1.0" @@ -78,6 +81,7 @@ proc-macro2 = "1.0" quote = "1.0" regex = "1.5" serde = "1.0" +serde_cbor = "0.11.1" serde_json = "1.0" serde_plain = "1.0" syn = { version = "2", features = [ "full", "visit-mut" ] } diff --git a/proxmox-rrd/Cargo.toml b/proxmox-rrd/Cargo.toml index c0b7d708..630ecec3 100644 --- a/proxmox-rrd/Cargo.toml +++ b/proxmox-rrd/Cargo.toml @@ -4,6 +4,8 @@ version = "0.1.0" authors.workspace = true edition.workspace = true license.workspace = true +repository.workspace = true +exclude.workspace = true description = "Simple RRD database implementation." [dev-dependencies] diff --git a/proxmox-time/Cargo.toml b/proxmox-time/Cargo.toml index 5976e90d..deb2e4c9 100644 --- a/proxmox-time/Cargo.toml +++ b/proxmox-time/Cargo.toml @@ -11,7 +11,7 @@ exclude.workspace = true [dependencies] anyhow.workspace = true -bitflags = "1.2.1" +bitflags.workspace = true lazy_static.workspace = true nom = "7"