]> git.proxmox.com Git - proxmox.git/blob - proxmox-rest-server/Cargo.toml
Merge remote-tracking branch 'proxmox-rest-merge/master'
[proxmox.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.3.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.17"
22 nix = "0.24"
23 once_cell = "1.3.1"
24 percent-encoding = "2.1"
25 regex = "1.5"
26 serde = { version = "1.0", features = [ "derive" ] }
27 serde_json = "1.0"
28 tokio = { version = "1.6", features = ["signal", "process"] }
29 tokio-openssl = "0.6.1"
30 tokio-stream = "0.1.0"
31 tower-service = "0.3.0"
32 url = "2.1"
33
34 #proxmox = "0.15.3"
35 proxmox-async = "0.4"
36 proxmox-compression = "0.1.1"
37 proxmox-io = "1"
38 proxmox-lang = "1.1"
39 proxmox-http = { version = "0.7", features = [ "client" ] }
40 proxmox-router = "1.3.0"
41 proxmox-schema = { version = "1.3.1", features = [ "api-macro", "upid-api-impl" ] }
42 proxmox-time = "1"
43 proxmox-sys = { version = "0.4", features = [ "logrotate", "timer" ] }