From 0a005b092cc0cd3cef9f97dffc91e7de289593a3 Mon Sep 17 00:00:00 2001 From: Maximiliano Sandoval Date: Wed, 14 Aug 2024 11:21:08 +0200 Subject: [PATCH] tools: remove unused dependencies Signed-off-by: Maximiliano Sandoval --- pbs-tools/Cargo.toml | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/pbs-tools/Cargo.toml b/pbs-tools/Cargo.toml index dde09d3e4..998e3077e 100644 --- a/pbs-tools/Cargo.toml +++ b/pbs-tools/Cargo.toml @@ -8,36 +8,21 @@ description = "common tools used throughout pbs" # This must not depend on any subcrates more closely related to pbs itself. [dependencies] anyhow.workspace = true -base64.workspace = true bytes.workspace = true -crc32fast.workspace = true -endian_trait.workspace = true -flate2.workspace = true foreign-types.workspace = true -futures.workspace = true hex.workspace = true libc.workspace = true -log.workspace = true -nix.workspace = true nom.workspace = true openssl.workspace = true -regex.workspace = true serde_json.workspace = true # rt-multi-thread is required for block_in_place tokio = { workspace = true, features = [ "fs", "io-util", "rt", "rt-multi-thread", "sync" ] } -url.workspace = true -walkdir.workspace = true -zstd.workspace = true proxmox-async.workspace = true proxmox-io = { workspace = true, features = [ "tokio" ] } proxmox-human-byte.workspace = true -proxmox-lang.workspace=true proxmox-sys.workspace = true proxmox-time.workspace = true -pbs-api-types.workspace = true -pbs-buildcfg.workspace = true - [dev-dependencies] tokio = { workspace = true, features = [ "macros" ] }