]> git.proxmox.com Git - proxmox-offline-mirror.git/blob - Cargo.toml
switch to production signing key
[proxmox-offline-mirror.git] / Cargo.toml
1 [package]
2 name = "proxmox-offline-mirror"
3 version = "0.1.0"
4 authors = ["Fabian Grünbichler <f.gruenbichler@proxmox.com>"]
5 edition = "2021"
6 license = "AGPL-3"
7 description = "Proxmox offline repository mirror and subscription key manager"
8
9 exclude = ["debian"]
10
11 [dependencies]
12 anyhow = "1.0"
13 base64 = "0.13"
14 bzip2 = "0.4"
15 flate2 = "1.0.22"
16 hex = "0.4.3"
17 lazy_static = "1.4"
18 nix = "0.24"
19 openssl = "0.10"
20 regex = "1.5.5"
21 serde = { version = "1.0", features = ["derive"] }
22 serde_json = "1.0"
23 sequoia-openpgp = { version = "1.7" }
24 walkdir = "2.3.1"
25 xz2 = "0.1"
26
27 proxmox-apt = { version = "0.9.1" }
28 proxmox-async = "0.4"
29 proxmox-http = { version = "0.7", features = [ "client-sync", "client-trait" ]}
30 proxmox-router = { version = "1.3", features = [ "cli" ], default_features = false }
31 proxmox-schema = { version = "1.1", features = [ "api-macro" ] }
32 proxmox-section-config = "1"
33 proxmox-serde = "0.1"
34 proxmox-subscription = { version = "0.3", features = [ "api-types" ] }
35 proxmox-sys = { version = "0.4", features = [ "timer" ] }
36 proxmox-time = { version = "1.1.3" }