2021-09-21 05:58:39 +00: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 07:04:19 +00:00
|
|
|
# for example
|
|
|
|
[dev-dependencies]
|
2022-04-13 06:20:27 +00:00
|
|
|
proxmox-schema = { version = "1.3.1", features = [ "api-macro" ] }
|
2021-09-29 07:04:19 +00:00
|
|
|
tokio = { version = "1.6", features = [ "rt-multi-thread", "signal", "process" ] }
|
|
|
|
|
2021-09-21 05:58:39 +00:00
|
|
|
[dependencies]
|
|
|
|
anyhow = "1.0"
|
2021-09-21 05:58:40 +00:00
|
|
|
futures = "0.3"
|
|
|
|
handlebars = "3.0"
|
|
|
|
http = "0.2"
|
2021-09-29 07:04:17 +00:00
|
|
|
hyper = { version = "0.14.5", features = [ "full" ] }
|
2021-09-21 05:58:40 +00:00
|
|
|
lazy_static = "1.4"
|
|
|
|
libc = "0.2"
|
2022-05-16 13:02:07 +00:00
|
|
|
log = "0.4.17"
|
2021-09-21 05:58:40 +00:00
|
|
|
nix = "0.19.1"
|
2021-09-23 08:09:19 +00:00
|
|
|
once_cell = "1.3.1"
|
2021-09-21 05:58:45 +00:00
|
|
|
percent-encoding = "2.1"
|
2021-12-16 10:12:17 +00:00
|
|
|
regex = "1.5"
|
2022-02-11 12:57:48 +00:00
|
|
|
serde = { version = "1.0", features = [ "derive" ] }
|
2021-09-21 05:58:40 +00:00
|
|
|
serde_json = "1.0"
|
|
|
|
tokio = { version = "1.6", features = ["signal", "process"] }
|
2021-09-21 05:58:51 +00:00
|
|
|
tokio-openssl = "0.6.1"
|
2022-04-12 14:15:08 +00:00
|
|
|
tokio-stream = "0.1.0"
|
2021-09-21 05:58:51 +00:00
|
|
|
tower-service = "0.3.0"
|
|
|
|
url = "2.1"
|
2021-09-21 05:58:40 +00:00
|
|
|
|
2021-11-23 16:57:00 +00:00
|
|
|
#proxmox = "0.15.3"
|
2022-02-21 13:25:29 +00:00
|
|
|
proxmox-async = "0.4"
|
2022-04-13 07:37:20 +00:00
|
|
|
proxmox-compression = "0.1.1"
|
2021-10-08 09:19:37 +00:00
|
|
|
proxmox-io = "1"
|
2022-02-21 13:24:24 +00:00
|
|
|
proxmox-lang = "1.1"
|
2021-11-23 16:57:00 +00:00
|
|
|
proxmox-http = { version = "0.6", features = [ "client" ] }
|
2022-04-13 06:17:08 +00:00
|
|
|
proxmox-router = "1.2"
|
2022-04-13 06:20:27 +00:00
|
|
|
proxmox-schema = { version = "1.3.1", features = [ "api-macro", "upid-api-impl" ] }
|
2021-10-08 09:19:37 +00:00
|
|
|
proxmox-time = "1"
|
2021-11-23 16:57:00 +00:00
|
|
|
proxmox-sys = "0.2"
|