Mercurial > crates > nonstick
comparison libpam-sys/src/lib.rs @ 106:49d9e2b5c189
An irresponsible mix of implementing libpam-sys and other stuff.
| author | Paul Fisher <paul@pfish.zone> |
|---|---|
| date | Thu, 26 Jun 2025 22:41:28 -0400 |
| parents | |
| children | e97534be35e3 |
comparison
equal
deleted
inserted
replaced
| 105:13b4d2a19674 | 106:49d9e2b5c189 |
|---|---|
| 1 #![doc = include_str!("../README.md")] | |
| 2 //! | |
| 3 //! ## Version info | |
| 4 //! | |
| 5 //! This documentation was built with the following configuration: | |
| 6 //! | |
| 7 #![cfg_attr(pam_impl = "illumos", doc = "- PAM implementation: Illumos")] | |
| 8 #![cfg_attr(pam_impl = "linux-pam", doc = "- PAM implementation: Linux-PAM")] | |
| 9 #![cfg_attr(pam_impl = "openpam", doc = "- PAM implementation: OpenPAM")] | |
| 10 //! | |
| 11 #![cfg_attr(feature = "basic-ext", doc = "- Includes common extensions")] | |
| 12 #![cfg_attr(feature = "linux-pam-ext", doc = "- Includes Linux-PAM extensions")] | |
| 13 #![cfg_attr(feature = "openpam-ext", doc = "- Includes OpenPAM extensions")] | |
| 14 #![cfg_attr( | |
| 15 feature = "use-system-headers", | |
| 16 doc = "- Built with system header files" | |
| 17 )] | |
| 18 mod constants; | |
| 19 pub mod helpers; | |
| 20 | |
| 21 #[doc(inline)] | |
| 22 pub use constants::*; |
