doas 0.1.0

A Rust implementation of doas, a minimal sudo alternative with PAM authentication
Documentation
[[bin]]
name = "doas"
path = "src/main.rs"

[dependencies.clap]
features = ["derive"]
version = "4.0"

[lib]
name = "doas"
path = "src/lib.rs"

[package]
authors = ["Huang Kunlun"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["command-line-utilities", "authentication"]
description = "A Rust implementation of doas, a minimal sudo alternative with PAM authentication"
documentation = "https://docs.rs/doas"
edition = "2024"
homepage = "https://github.com/hkwk/doas"
keywords = ["doas", "sudo", "pam", "authentication", "cli"]
license = "MIT"
name = "doas"
readme = "README.md"
repository = "https://github.com/hkwk/doas"
rust-version = "1.92.0"
version = "0.1.0"

[target."cfg(unix)".dependencies.libc]
version = "0.2"

[target."cfg(unix)".dependencies.pam]
version = "0.7"