-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (35 loc) · 976 Bytes
/
Copy pathCargo.toml
File metadata and controls
38 lines (35 loc) · 976 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
[package]
name = "proxctl"
version = "0.2.9"
edition = "2024"
rust-version = "1.90"
description = "CLI for Proxmox VE"
license = "MIT"
repository = "https://github.com/rvben/proxctl"
homepage = "https://github.com/rvben/proxctl"
keywords = ["proxmox", "virtualization", "cli", "kvm", "lxc"]
categories = ["command-line-utilities"]
default-run = "proxctl"
exclude = ["DESIGN.md", "PLAN-PHASE1.md"]
[[bin]]
name = "proxctl"
path = "src/main.rs"
[dependencies]
clap = { version = "4", features = ["derive", "env"] }
clap_complete = "4"
reqwest = { version = "0.12", default-features = false, features = ["rustls-tls", "json", "multipart"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_yaml = "0.9"
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
toml = "0.8"
owo-colors = "4"
dirs = "6"
thiserror = "2"
indicatif = "0.17"
rpassword = "7"
dialoguer = "0.11"
[dev-dependencies]
tempfile = "3"
wiremock = "0.6"
jsonschema = "0.29"