comparison testharness/Cargo.toml @ 177:9925fa14021b

Fix testharness to build warning- and error-free.
author Paul Fisher <paul@pfish.zone>
date Wed, 30 Jul 2025 18:00:14 -0400
parents 77470e45e397
children 42f747774d94
comparison
equal deleted inserted replaced
176:0730f5f2ee2a 177:9925fa14021b
10 10
11 [lib] 11 [lib]
12 crate-type = ["cdylib"] 12 crate-type = ["cdylib"]
13 13
14 [features] 14 [features]
15 default = ["basic-ext"]
16 basic-ext = ["nonstick/basic-ext"] 15 basic-ext = ["nonstick/basic-ext"]
17 linux-pam-ext = ["nonstick/linux-pam-ext"] 16 linux-pam-ext = ["nonstick/linux-pam-ext"]
18 openpam-ext = ["nonstick/openpam-ext"] 17 openpam-ext = ["nonstick/openpam-ext"]
19 sun-ext = ["nonstick/sun-ext"] 18 sun-ext = ["nonstick/sun-ext"]
20 test-install = [] 19 test-install = []
21 20
22 [dependencies] 21 [dependencies]
23 nonstick = { path = "..", features = ["link"], default-features = false } 22 nonstick = { path = "..", features = ["link"], default-features = false }
24 23
24 [build-dependencies]
25 libpam-sys-impls = { path = "../libpam-sys/libpam-sys-impls" }
26
25 [dev-dependencies] 27 [dev-dependencies]
26 anyhow = "1.0.98" 28 anyhow = "1.0.98"
27 test-cdylib = "1.1.0" 29 test-cdylib = "1.1.0"
28 thiserror = "2.0.12" 30 thiserror = "2.0.12"