d420962fbc
These are mostly tokio specific "hacks" or "workarounds" we only really need/want in our binaries without pulling it in via our library crates. Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
12 lines
315 B
TOML
12 lines
315 B
TOML
[package]
|
|
name = "pbs-runtime"
|
|
version = "0.1.0"
|
|
authors = ["Proxmox Support Team <support@proxmox.com>"]
|
|
edition = "2018"
|
|
description = "tokio runtime related helpers required for binaries"
|
|
|
|
[dependencies]
|
|
lazy_static = "1.4"
|
|
pin-utils = "0.1.0"
|
|
tokio = { version = "1.6", features = [ "rt", "rt-multi-thread" ] }
|