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