Mercurial > crates > nonstick
comparison src/lib.rs @ 116:a12706e42c9d default tip
Logging, macros, and building:
- Changes logging API to accept the `Location` of the log statement.
Fixes OpenPAM implementation.
- Stops publicly exporting doc macros.
- Uses dlopen to detect the PAM library rather than header jankery.
author | Paul Fisher <paul@pfish.zone> |
---|---|
date | Sun, 29 Jun 2025 18:27:51 -0400 |
parents | 49d9e2b5c189 |
children |
comparison
equal
deleted
inserted
replaced
115:1e11a52b4665 | 116:a12706e42c9d |
---|---|
30 pub mod module; | 30 pub mod module; |
31 | 31 |
32 pub mod handle; | 32 pub mod handle; |
33 | 33 |
34 mod _doc; | 34 mod _doc; |
35 pub(crate) use _doc::*; | |
35 mod environ; | 36 mod environ; |
36 #[cfg(feature = "link")] | 37 #[cfg(feature = "link")] |
37 mod libpam; | 38 mod libpam; |
38 pub mod logging; | 39 pub mod logging; |
39 | 40 |