d6e86d670b
Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
44 lines
1.3 KiB
TOML
44 lines
1.3 KiB
TOML
[package]
|
|
name = "proxmox-access-control"
|
|
description = "A collection of utilities to implement access control management."
|
|
version = "0.2.3"
|
|
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
exclude.workspace = true
|
|
homepage.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
nix = { workspace = true, optional = true }
|
|
openssl = { workspace = true, optional = true }
|
|
serde.workspace = true
|
|
serde_json = { workspace = true, optional = true }
|
|
|
|
proxmox-auth-api = { workspace = true, features = [ "api-types" ] }
|
|
proxmox-config-digest = { workspace = true, optional = true, features = [ "openssl" ] }
|
|
proxmox-product-config = { workspace = true, optional = true }
|
|
proxmox-router = { workspace = true, optional = true }
|
|
proxmox-schema.workspace = true
|
|
proxmox-section-config = { workspace = true, optional = true }
|
|
proxmox-shared-memory = { workspace = true, optional = true }
|
|
proxmox-sys = { workspace = true, features = [ "crypt" ], optional = true }
|
|
proxmox-time = { workspace = true }
|
|
|
|
[features]
|
|
default = []
|
|
impl = [
|
|
"dep:nix",
|
|
"dep:openssl",
|
|
"dep:proxmox-config-digest",
|
|
"dep:proxmox-product-config",
|
|
"dep:proxmox-router",
|
|
"dep:proxmox-section-config",
|
|
"dep:proxmox-shared-memory",
|
|
"dep:proxmox-sys",
|
|
"dep:serde_json",
|
|
]
|