2021-09-21 08:58:39 +03:00
[ package ]
name = "proxmox-rest-server"
2023-11-27 16:33:25 +03:00
version = "0.5.0"
2022-12-06 14:18:46 +03:00
authors . workspace = true
edition . workspace = true
license . workspace = true
repository . workspace = true
2021-09-21 08:58:39 +03:00
description = "REST server implementation"
2022-12-06 14:18:46 +03:00
exclude . workspace = true
2022-10-11 15:47:35 +03:00
2021-09-29 10:04:19 +03:00
[ dev-dependencies ]
2022-12-07 10:42:52 +03:00
proxmox-schema = { workspace = true , features = [ "api-macro" ] }
2022-12-06 15:43:42 +03:00
tokio = { workspace = true , features = [ "rt-multi-thread" , "signal" , "process" ] }
2021-09-29 10:04:19 +03:00
2021-09-21 08:58:39 +03:00
[ dependencies ]
2022-12-06 15:43:42 +03:00
anyhow . workspace = true
futures . workspace = true
2023-01-24 15:56:42 +03:00
handlebars = { workspace = true , optional = true }
2022-12-06 15:43:42 +03:00
http . workspace = true
hyper = { workspace = true , features = [ "full" ] }
lazy_static . workspace = true
libc . workspace = true
log . workspace = true
nix . workspace = true
2022-12-12 12:18:07 +03:00
once_cell . workspace = true
2023-01-25 17:37:20 +03:00
openssl . workspace = true
2022-12-06 15:43:42 +03:00
percent-encoding . workspace = true
2022-12-12 11:30:30 +03:00
regex . workspace = true
2022-12-06 15:43:42 +03:00
serde = { workspace = true , features = [ "derive" ] }
serde_json . workspace = true
tokio = { workspace = true , features = [ "signal" , "process" ] }
tokio-openssl . workspace = true
2022-12-12 12:18:07 +03:00
tokio-stream . workspace = true
tower-service . workspace = true
2022-12-06 15:43:42 +03:00
url . workspace = true
2021-09-21 08:58:40 +03:00
2022-12-07 10:42:52 +03:00
proxmox-async . workspace = true
proxmox-compression . workspace = true
2023-01-25 13:57:49 +03:00
proxmox-http = { workspace = true , optional = true }
2022-12-07 10:42:52 +03:00
proxmox-io . workspace = true
proxmox-lang . workspace = true
proxmox-router . workspace = true
proxmox-schema = { workspace = true , features = [ "api-macro" , "upid-api-impl" ] }
proxmox-sys = { workspace = true , features = [ "logrotate" , "timer" ] }
2023-01-25 13:57:49 +03:00
proxmox-time . workspace = true
2023-01-24 15:56:42 +03:00
[ features ]
default = [ ]
templates = [ "dep:handlebars" ]
2023-01-25 13:57:49 +03:00
rate-limited-stream = [
"dep:proxmox-http" ,
"proxmox-http?/rate-limited-stream" ,
]