2021-10-07 09:36:06 +02:00
[ package ]
name = "proxmox-router"
2022-06-21 10:39:35 +02:00
version = "1.2.4"
2021-10-07 09:36:06 +02:00
authors = [ "Proxmox Support Team <support@proxmox.com>" ]
edition = "2018"
license = "AGPL-3"
description = "proxmox API Router and CLI utilities"
exclude = [ "debian" ]
[ dependencies ]
anyhow = "1.0"
2022-06-21 10:38:16 +02:00
env_logger = { version = "0.9" , optional = true }
2022-08-03 14:44:53 +02:00
http = { version = "0.2" , optional = true }
hyper = { version = "0.14" , features = [ "full" ] , optional = true }
2022-06-01 15:06:27 +02:00
nix = "0.24.1"
2021-10-07 09:36:06 +02:00
percent-encoding = "2.1"
serde_json = "1.0"
2022-04-08 11:56:01 +02:00
serde = "1.0"
2021-10-07 09:36:06 +02:00
unicode-width = "0.1.8"
# cli:
tokio = { version = "1.0" , features = [ ] , optional = true }
2022-06-02 11:59:00 +02:00
rustyline = { version = "9" , optional = true }
2021-10-07 09:36:06 +02:00
libc = { version = "0.2" , optional = true }
2022-02-21 13:45:42 +01:00
proxmox-lang = { path = "../proxmox-lang" , version = "1.1" }
2021-12-29 10:53:25 +01:00
proxmox-schema = { path = "../proxmox-schema" , version = "1.1" }
2022-04-12 14:24:27 +02:00
proxmox-async = { path = "../proxmox-async" , version = "0.4.1" }
2021-10-07 09:36:06 +02:00
[ features ]
2022-08-03 14:44:53 +02:00
default = [ "cli" , "server" ]
2022-08-22 11:24:04 +02:00
cli = [ "dep:env_logger" , "dep:libc" , "dep:rustyline" , "dep:tokio" ]
2022-08-03 14:44:53 +02:00
server = [ "dep:http" , "dep:hyper" ]
2021-10-07 09:36:06 +02:00
test-harness = [ "proxmox-schema/test-harness" ]