rudo 0.9.0

A utility to gain privilege access on Unix system with Pam
[dependencies.clap]
version = "2.34"

[dependencies.libc]
version = "0.2"

[dependencies.log]
version = "0.4"

[dependencies.serde]
features = ["derive"]
version = "1.0"

[dependencies.serde_yaml]
version = ">=0.8.4"

[features]
default = ["journald"]
journald = ["systemd"]
macos = ["oslog"]

[package]
authors = ["Rémi Lauzier <remilauzier@protonmail.com>"]
categories = ["authentication", "command-line-utilities"]
description = "A utility to gain privilege access on Unix system with Pam"
edition = "2021"
homepage = "https://remilauzier.github.io/rudo/"
include = ["src/", "conf/", "man/", "LICENSE", "README.md", "Cargo.toml", "Cargo.lock"]
keywords = ["cli", "sudo", "auth"]
license = "GPL-2.0-or-later"
name = "rudo"
readme = "README.md"
repository = "https://github.com/remilauzier/rudo.git"
resolver = "2"
version = "0.9.0"
[profile.dev]
lto = true

[profile.release]
lto = true

[profile.test]
lto = true
[target."cfg(target_os = \"linux\")".dependencies.systemd]
optional = true
version = "0.10"
[target."cfg(target_os = \"macos\")".dependencies.oslog]
optional = true
version = "0.1"
[target."cfg(unix)".dependencies.pam-client]
version = "0.2"

[target."cfg(unix)".dependencies.users]
version = "0.11"