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]
|
|
|
|
proxmox = { version = "0.13", features = ["router","api-macro"] }
|
|
|
|
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"
|
2021-09-21 05:58:41 +00:00
|
|
|
log = "0.4"
|
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-09-21 05:58:51 +00:00
|
|
|
regex = "1.2"
|
2021-09-21 05:58:40 +00:00
|
|
|
serde = { version = "1.0", features = [] }
|
|
|
|
serde_json = "1.0"
|
|
|
|
tokio = { version = "1.6", features = ["signal", "process"] }
|
2021-09-21 05:58:51 +00:00
|
|
|
tokio-openssl = "0.6.1"
|
|
|
|
tower-service = "0.3.0"
|
|
|
|
url = "2.1"
|
2021-09-21 05:58:40 +00:00
|
|
|
|
2021-09-28 08:11:56 +00:00
|
|
|
proxmox = { version = "0.13.5", features = [ "router"] }
|
2021-09-21 05:58:40 +00:00
|
|
|
|
|
|
|
# fixme: remove this dependency (pbs_tools::broadcast_future)
|
|
|
|
pbs-tools = { path = "../pbs-tools" }
|