forked from Proxmox/proxmox
d6e86d670b
Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
42 lines
951 B
TOML
42 lines
951 B
TOML
[package]
|
|
name = "proxmox-apt"
|
|
description = "Proxmox library for APT"
|
|
version = "0.11.3"
|
|
|
|
exclude = ["debian"]
|
|
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
homepage.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
hex.workspace = true
|
|
openssl.workspace = true
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json.workspace = true
|
|
|
|
rfc822-like = "0.2.1"
|
|
|
|
proxmox-apt-api-types.workspace = true
|
|
proxmox-config-digest = { workspace = true, features = ["openssl"] }
|
|
proxmox-sys.workspace = true
|
|
|
|
apt-pkg-native = { version = "0.3.2", optional = true }
|
|
regex = { workspace = true, optional = true }
|
|
nix = { workspace = true, optional = true }
|
|
log = { workspace = true, optional = true }
|
|
proxmox-schema = { workspace = true, optional = true }
|
|
|
|
[features]
|
|
default = []
|
|
cache = [
|
|
"dep:apt-pkg-native",
|
|
"dep:regex",
|
|
"dep:nix",
|
|
"dep:log",
|
|
"dep:proxmox-schema",
|
|
]
|