proxmox-rrd: move unshipped cli tool to examples

it's a rather low-level tool mostly useful for debugging and some of
it is rather "dumb" (by design) anyway, e.g., it does not
transparently applies journal but really only operates on the DB
files as is (which can conflict with daemon operations).

In summary, not (yet) a tool meant for end user consumption.
Move it to examples folder to avoid compilation on packaging (we do
not ship it anyway) which allows us to move the rather expensive
proxmox-router (pulls in hyper) to the dev-dependencies section.

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
Thomas Lamprecht 2021-10-13 13:33:15 +02:00
parent bacc99c7f8
commit 82f5ad18f0
2 changed files with 3 additions and 1 deletions

View File

@ -5,6 +5,9 @@ authors = ["Proxmox Support Team <support@proxmox.com>"]
edition = "2018"
description = "Simple RRD database implementation."
[dev-dependencies]
proxmox-router = "1"
[dependencies]
anyhow = "1.0"
bitflags = "1.2.1"
@ -16,5 +19,4 @@ serde_cbor = "0.11.1"
proxmox = { version = "0.14.0" }
proxmox-time = "1"
proxmox-router = "1"
proxmox-schema = { version = "1", features = [ "api-macro" ] }