proxmox/proxmox-daemon/Cargo.toml
Wolfgang Bumiller d3abd366c4 introduce proxmox-daemon crate
split from rest-server:
- "state" module (shutdown/reload state)
- shutdown futures
- "daemon" module (named 'server' module in proxmox-daemon)
- command socket

Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
2024-07-24 14:25:50 +02:00

27 lines
656 B
TOML

[package]
name = "proxmox-daemon"
version = "0.1.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
description = """
Daemon state handling (catching reload signals, registering commands with the command socket, ...)
"""
exclude.workspace = true
[dependencies]
anyhow.workspace = true
futures.workspace = true
libc.workspace = true
log.workspace = true
nix.workspace = true
once_cell.workspace = true
serde.workspace = true
serde_json.workspace = true
tokio = { workspace = true, features = ["io-util", "net", "rt", "signal", "sync"] }
proxmox-sys.workspace = true
proxmox-systemd.workspace = true