proxmox/proxmox-rest-server/Cargo.toml

46 lines
1.3 KiB
TOML
Raw Normal View History

[package]
name = "proxmox-rest-server"
version = "0.2.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
description = "REST server implementation"
exclude.workspace = true
[dev-dependencies]
proxmox-schema = { workspace = true, features = [ "api-macro" ] }
tokio = { workspace = true, features = [ "rt-multi-thread", "signal", "process" ] }
[dependencies]
anyhow.workspace = true
futures.workspace = true
handlebars = "3.0"
http.workspace = true
hyper = { workspace = true, features = [ "full" ] }
lazy_static.workspace = true
libc.workspace = true
log.workspace = true
nix.workspace = true
once_cell = "1.3.1"
percent-encoding.workspace = true
regex = "1.5"
serde = { workspace = true, features = [ "derive" ] }
serde_json.workspace = true
tokio = { workspace = true, features = ["signal", "process"] }
tokio-openssl.workspace = true
tokio-stream = "0.1.0"
tower-service = "0.3.0"
url.workspace = true
proxmox-async.workspace = true
proxmox-compression.workspace = true
proxmox-io.workspace = true
proxmox-lang.workspace = true
proxmox-http = { workspace = true, features = [ "client" ] }
proxmox-router.workspace = true
proxmox-schema = { workspace = true, features = [ "api-macro", "upid-api-impl" ] }
proxmox-time.workspace = true
proxmox-sys = { workspace = true, features = [ "logrotate", "timer" ] }