2021-09-21 07:58:39 +02:00
[ package ]
name = "proxmox-rest-server"
version = "0.1.0"
authors = [ "Proxmox Support Team <support@proxmox.com>" ]
edition = "2018"
description = "REST server implementation"
2021-09-29 09:04:19 +02:00
# for example
[ dev-dependencies ]
2021-10-08 11:19:37 +02:00
proxmox-schema = { version = "1" , features = [ "api-macro" ] }
2021-09-29 09:04:19 +02:00
tokio = { version = "1.6" , features = [ "rt-multi-thread" , "signal" , "process" ] }
2021-09-21 07:58:39 +02:00
[ dependencies ]
anyhow = "1.0"
2021-09-21 07:58:40 +02:00
futures = "0.3"
handlebars = "3.0"
http = "0.2"
2021-09-29 09:04:17 +02:00
hyper = { version = "0.14.5" , features = [ "full" ] }
2021-09-21 07:58:40 +02:00
lazy_static = "1.4"
libc = "0.2"
2021-09-21 07:58:41 +02:00
log = "0.4"
2021-09-21 07:58:40 +02:00
nix = "0.19.1"
2021-09-23 10:09:19 +02:00
once_cell = "1.3.1"
2021-09-21 07:58:45 +02:00
percent-encoding = "2.1"
2021-09-21 07:58:51 +02:00
regex = "1.2"
2021-09-21 07:58:40 +02:00
serde = { version = "1.0" , features = [ ] }
serde_json = "1.0"
tokio = { version = "1.6" , features = [ "signal" , "process" ] }
2021-09-21 07:58:51 +02:00
tokio-openssl = "0.6.1"
tower-service = "0.3.0"
url = "2.1"
2021-09-21 07:58:40 +02:00
2021-11-18 13:43:41 +01:00
proxmox = "0.15.3"
2021-11-20 17:14:02 +01:00
proxmox-async = "0.2"
2021-10-08 11:19:37 +02:00
proxmox-io = "1"
proxmox-lang = "1"
2021-11-04 13:42:30 +01:00
proxmox-http = { version = "0.5.0" , features = [ "client" ] }
2021-10-13 12:55:51 +02:00
proxmox-router = "1.1"
2021-10-08 11:19:37 +02:00
proxmox-schema = { version = "1" , features = [ "api-macro" , "upid-api-impl" ] }
proxmox-time = "1"
2021-11-22 10:55:38 +01:00
proxmox-sys = "0.1.2"