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