]> git.proxmox.com Git - proxmox-backup.git/blob - proxmox-rest-server/Cargo.toml
move src/server/rest.rs to proxmox-rest-server crate
[proxmox-backup.git] / proxmox-rest-server / Cargo.toml
1 [package]
2 name = "proxmox-rest-server"
3 version = "0.1.0"
4 authors = ["Proxmox Support Team <support@proxmox.com>"]
5 edition = "2018"
6 description = "REST server implementation"
7
8 [dependencies]
9 anyhow = "1.0"
10 futures = "0.3"
11 handlebars = "3.0"
12 http = "0.2"
13 hyper = { version = "0.14", features = [ "full" ] }
14 lazy_static = "1.4"
15 libc = "0.2"
16 log = "0.4"
17 nix = "0.19.1"
18 percent-encoding = "2.1"
19 regex = "1.2"
20 serde = { version = "1.0", features = [] }
21 serde_json = "1.0"
22 tokio = { version = "1.6", features = ["signal", "process"] }
23 tokio-openssl = "0.6.1"
24 tower-service = "0.3.0"
25 url = "2.1"
26
27 proxmox = { version = "0.13.3", features = [ "router"] }
28
29 # fixme: remove this dependency (pbs_tools::broadcast_future)
30 pbs-tools = { path = "../pbs-tools" }