]> git.proxmox.com Git - proxmox-backup.git/blob - proxmox-rest-server/Cargo.toml
update to first proxmox crate split
[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 # for example
9 [dev-dependencies]
10 proxmox-schema = { version = "1", features = [ "api-macro" ] }
11 tokio = { version = "1.6", features = [ "rt-multi-thread", "signal", "process" ] }
12
13 [dependencies]
14 anyhow = "1.0"
15 futures = "0.3"
16 handlebars = "3.0"
17 http = "0.2"
18 hyper = { version = "0.14.5", features = [ "full" ] }
19 lazy_static = "1.4"
20 libc = "0.2"
21 log = "0.4"
22 nix = "0.19.1"
23 once_cell = "1.3.1"
24 percent-encoding = "2.1"
25 regex = "1.2"
26 serde = { version = "1.0", features = [] }
27 serde_json = "1.0"
28 tokio = { version = "1.6", features = ["signal", "process"] }
29 tokio-openssl = "0.6.1"
30 tower-service = "0.3.0"
31 url = "2.1"
32
33 proxmox = "0.14.0"
34 proxmox-io = "1"
35 proxmox-lang = "1"
36 proxmox-router = "1"
37 proxmox-schema = { version = "1", features = [ "api-macro", "upid-api-impl" ] }
38 proxmox-time = "1"
39
40 # fixme: remove this dependency (pbs_tools::broadcast_future)
41 pbs-tools = { path = "../pbs-tools" }