]> git.proxmox.com Git - pve-installer.git/blob - proxmox-auto-installer/Cargo.toml
auto-installer: fetch: add http plugin to fetch answer
[pve-installer.git] / proxmox-auto-installer / Cargo.toml
1 [package]
2 name = "proxmox-auto-installer"
3 version = "0.1.0"
4 edition = "2021"
5 authors = [
6 "Aaron Lauterer <a.lauterer@proxmox.com>",
7 "Proxmox Support Team <support@proxmox.com>",
8 ]
9 license = "AGPL-3"
10 exclude = [ "build", "debian" ]
11 homepage = "https://www.proxmox.com"
12
13 [dependencies]
14 anyhow = "1.0"
15 clap = { version = "4.0", features = ["derive"] }
16 glob = "0.3"
17 hex = "0.4"
18 log = "0.4.20"
19 native-tls = "0.2"
20 proxmox-installer-common = { path = "../proxmox-installer-common" }
21 regex = "1.7"
22 rustls = { version = "0.20", features = [ "dangerous_configuration" ] }
23 rustls-native-certs = "0.6"
24 serde = { version = "1.0", features = ["derive"] }
25 serde_json = "1.0"
26 sha2 = "0.10"
27 toml = "0.7"
28 ureq = { version = "2.6", features = [ "native-certs", "native-tls" ] }