]> git.proxmox.com Git - proxmox-backup.git/blame - proxmox-rest-server/Cargo.toml
move src/tools/daemon.rs to proxmox-rest-server workspace
[proxmox-backup.git] / proxmox-rest-server / Cargo.toml
CommitLineData
037f6b6d
DM
1[package]
2name = "proxmox-rest-server"
3version = "0.1.0"
4authors = ["Proxmox Support Team <support@proxmox.com>"]
5edition = "2018"
6description = "REST server implementation"
7
8[dependencies]
9anyhow = "1.0"
fd6d2438
DM
10futures = "0.3"
11handlebars = "3.0"
12http = "0.2"
13hyper = { version = "0.14", features = [ "full" ] }
14lazy_static = "1.4"
15libc = "0.2"
8bca935f 16log = "0.4"
fd6d2438
DM
17nix = "0.19.1"
18serde = { version = "1.0", features = [] }
19serde_json = "1.0"
20tokio = { version = "1.6", features = ["signal", "process"] }
21
22proxmox = { version = "0.13.3", features = [ "router"] }
23
24# fixme: remove this dependency (pbs_tools::broadcast_future)
25pbs-tools = { path = "../pbs-tools" }