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