Mercurial > crates > nonstick
comparison Cargo.toml @ 130:80c07e5ab22f
Transfer over (almost) completely to using libpam-sys.
This reimplements everything in nonstick on top of the new -sys crate.
We don't yet use libpam-sys's helpers for binary message payloads. Soon.
author | Paul Fisher <paul@pfish.zone> |
---|---|
date | Tue, 01 Jul 2025 06:11:43 -0400 |
parents | 2346fd501b7a |
children | a632a8874131 |
comparison
equal
deleted
inserted
replaced
129:5b2de52dd8b2 | 130:80c07e5ab22f |
---|---|
19 authors.workspace = true | 19 authors.workspace = true |
20 edition.workspace = true | 20 edition.workspace = true |
21 rust-version.workspace = true | 21 rust-version.workspace = true |
22 | 22 |
23 [features] | 23 [features] |
24 default = ["link"] | 24 default = ["link", "basic-ext"] |
25 | 25 |
26 # Enable this to actually link against your system's PAM library. | 26 # Enable this to actually link against your system's PAM library. |
27 # | 27 # |
28 # This will fail if you have extensions enabled that are not compatible | 28 # This will fail if you have extensions enabled that are not compatible |
29 # with your system's PAM. | 29 # with your system's PAM. |
30 link = [] | 30 link = [] |
31 | 31 |
32 basic-ext = [] | 32 basic-ext = [] |
33 illumos-ext = [] | |
34 linux-pam-ext = [] | 33 linux-pam-ext = [] |
35 openpam-ext = [] | 34 openpam-ext = [] |
35 sun-ext = [] | |
36 | 36 |
37 # This feature exists only for testing. | 37 # This feature exists only for testing. |
38 test-install = [] | 38 test-install = [] |
39 | 39 |
40 [dependencies] | 40 [dependencies] |