]> git.proxmox.com Git - proxmox.git/commitdiff
add `proxmox-rrd` to workspace
authorLukas Wagner <l.wagner@proxmox.com>
Wed, 31 Jan 2024 11:57:22 +0000 (12:57 +0100)
committerLukas Wagner <l.wagner@proxmox.com>
Thu, 1 Feb 2024 09:30:57 +0000 (10:30 +0100)
Signed-off-by: Lukas Wagner <l.wagner@proxmox.com>
Cargo.toml
proxmox-rrd/Cargo.toml
proxmox-time/Cargo.toml

index 8106ee468263111d9f82381cdd8b143a423f67af..1f699ed5b92882c8ee208c5849f9a3f40bafbd9b 100644 (file)
@@ -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" ] }
index c0b7d708d4491d03383ce53244631c173148d931..630ecec395ac57ad49eb7441af4b8f952f024c71 100644 (file)
@@ -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]
index 5976e90d32a89323b822fe940b86f8e39645cd19..deb2e4c95341cf07fe904c8e01bee17f366d5e97 100644 (file)
@@ -11,7 +11,7 @@ exclude.workspace = true
 
 [dependencies]
 anyhow.workspace = true
-bitflags = "1.2.1"
+bitflags.workspace = true
 lazy_static.workspace = true
 nom = "7"