2024-06-19 12:54:12 +03:00
[ package ]
name = "proxmox-access-control"
2024-09-20 09:42:25 +03:00
description = "A collection of utilities to implement access control management."
2024-09-05 15:25:15 +03:00
version = "0.2.3"
2024-09-20 09:42:25 +03:00
2024-06-19 12:54:12 +03:00
authors . workspace = true
edition . workspace = true
2024-09-20 09:42:25 +03:00
exclude . workspace = true
homepage . workspace = true
2024-06-19 12:54:12 +03:00
license . workspace = true
repository . workspace = true
rust-version . workspace = true
[ dependencies ]
anyhow . workspace = true
2024-06-19 12:54:18 +03:00
nix = { workspace = true , optional = true }
openssl = { workspace = true , optional = true }
2024-06-19 12:54:13 +03:00
serde . workspace = true
2024-06-19 12:54:18 +03:00
serde_json = { workspace = true , optional = true }
2024-06-19 12:54:12 +03:00
proxmox-auth-api = { workspace = true , features = [ "api-types" ] }
2024-07-04 15:31:24 +03:00
proxmox-config-digest = { workspace = true , optional = true , features = [ "openssl" ] }
proxmox-product-config = { workspace = true , optional = true }
2024-06-19 12:54:18 +03:00
proxmox-router = { workspace = true , optional = true }
2024-06-19 12:54:13 +03:00
proxmox-schema . workspace = true
2024-06-19 12:54:18 +03:00
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" ,
2024-07-04 15:31:24 +03:00
"dep:proxmox-config-digest" ,
2024-06-19 12:54:18 +03:00
"dep:proxmox-product-config" ,
"dep:proxmox-router" ,
"dep:proxmox-section-config" ,
"dep:proxmox-shared-memory" ,
"dep:proxmox-sys" ,
"dep:serde_json" ,
]