]> git.proxmox.com Git - proxmox-backup.git/blame - proxmox-rest-server/Cargo.toml
move worker_task.rs into proxmox-rest-server crate
[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 17nix = "0.19.1"
b9700a9f 18once_cell = "1.3.1"
778c7d95 19percent-encoding = "2.1"
6fbf0acc 20regex = "1.2"
fd6d2438
DM
21serde = { version = "1.0", features = [] }
22serde_json = "1.0"
23tokio = { version = "1.6", features = ["signal", "process"] }
6fbf0acc
DM
24tokio-openssl = "0.6.1"
25tower-service = "0.3.0"
26url = "2.1"
fd6d2438 27
81867f05 28proxmox = { version = "0.13.4", features = [ "router"] }
fd6d2438
DM
29
30# fixme: remove this dependency (pbs_tools::broadcast_future)
31pbs-tools = { path = "../pbs-tools" }