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