comparison Cargo.toml @ 99:8840fa6534f6

Streamline dependencies and rename to openpam-extensions.
author Paul Fisher <paul@pfish.zone>
date Tue, 24 Jun 2025 14:54:47 -0400
parents efc2b56c8928
children
comparison
equal deleted inserted replaced
98:b87100c5eed4 99:8840fa6534f6
10 edition = "2021" 10 edition = "2021"
11 11
12 [features] 12 [features]
13 default = ["link"] 13 default = ["link"]
14 # Enable this to actually link against your system's PAM library. 14 # Enable this to actually link against your system's PAM library.
15 #
16 # This will fail if you have extensions enabled that are not compatible
17 # with your system's PAM.
15 link = [] 18 link = []
16 # Enable this to get access to Linux-PAM extensions. 19 # Enable this to get access to Linux-PAM extensions.
17 linux-pam-extensions = [] 20 linux-pam-extensions = []
18 # Enable this to get access to OpenPAM features not available in Linux-PAM. 21 # Enable this to get access to OpenPAM extensions.
19 openpam = [] 22 openpam-extensions = []
20 23
21 [dependencies] 24 [dependencies]
22 bitflags = "2.9.0" 25 bitflags = "2.9.0"
23 libc = "0.2.97" 26 libc = "0.2.97"
24 num_enum = "0.7.3" 27 num_enum = "0.7.3"
28
29 [dev-dependencies]
25 regex = "1.11.1" 30 regex = "1.11.1"
26 31
27 [build-dependencies] 32 [build-dependencies]
28 bindgen = "0.72.0" 33 bindgen = "0.72.0"