build: more missing features

these would cause failures when building the sub-crates directly from
their sub-directory.

Signed-off-by: Fabian Grünbichler <f.gruenbichler@proxmox.com>
This commit is contained in:
Fabian Grünbichler 2022-09-05 12:55:33 +02:00
parent 180585a273
commit e762aea4e0
3 changed files with 3 additions and 3 deletions

View File

@ -13,7 +13,7 @@ libc = "0.2"
nix = "0.24"
log = "0.4"
regex = "1.5"
tokio = { version = "1.6", features = [] }
tokio = { version = "1.6", features = ["io-util"] }
proxmox-time = "1"
proxmox-fuse = "0.1.3"

View File

@ -24,7 +24,7 @@ proxmox-router = { version = "1.2.4", features = [ "cli" ] }
proxmox-schema = { version = "1.3.1", features = [ "api-macro" ] }
proxmox-time = "1"
proxmox-uuid = "1"
proxmox-sys = "0.4"
proxmox-sys = { version = "0.4", features = [ "logrotate" ] }
pbs-api-types = { path = "../pbs-api-types" }
pbs-buildcfg = { path = "../pbs-buildcfg" }

View File

@ -40,4 +40,4 @@ proxmox-http = { version = "0.6.4", features = [ "client" ] }
proxmox-router = "1.2.4"
proxmox-schema = { version = "1.3.1", features = [ "api-macro", "upid-api-impl" ] }
proxmox-time = "1"
proxmox-sys = { version = "0.4", features = [ "logrotate" ] }
proxmox-sys = { version = "0.4", features = [ "logrotate", "timer" ] }