84537a02b1
this commit factors out the user config. it also add two new functions to the `AccessControlConfig` trait to handle caching in a more generalized way. Signed-off-by: Shannon Sterz <s.sterz@proxmox.com>
31 lines
942 B
TOML
31 lines
942 B
TOML
[package]
|
|
name = "proxmox-access-control"
|
|
version = "0.1.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
homepage.workspace = true
|
|
exclude.workspace = true
|
|
rust-version.workspace = true
|
|
description = "A collection of utilities to implement access control management."
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
nix.workspace = true
|
|
openssl.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
|
|
# proxmox-notify.workspace = true
|
|
proxmox-auth-api = { workspace = true, features = [ "api-types" ] }
|
|
proxmox-router = { workspace = true }
|
|
proxmox-schema.workspace = true
|
|
proxmox-section-config.workspace = true
|
|
proxmox-product-config.workspace = true
|
|
proxmox-shared-memory.workspace = true
|
|
proxmox-sys = { workspace = true, features = [ "crypt" ] }
|
|
proxmox-time.workspace = true
|