Mercurial > crates > nonstick
comparison testharness/Cargo.toml @ 104:a2676475e86b default tip
Create the very start of a test suite.
- Creates a new testharness package
- Sets up the outlines of a test suite that will execute there
- A basic container where maybe those tests can execute
author | Paul Fisher <paul@pfish.zone> |
---|---|
date | Wed, 25 Jun 2025 16:56:56 -0400 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
103:dfcd96a74ac4 | 104:a2676475e86b |
---|---|
1 [package] | |
2 name = "nonstick-testharness" | |
3 description = "Automatic test harness for the Nonstick PAM library." | |
4 publish = false | |
5 version.workspace = true | |
6 authors.workspace = true | |
7 edition.workspace = true | |
8 | |
9 [lib] | |
10 crate-type = ["cdylib"] | |
11 | |
12 [features] | |
13 linux-pam-extensions = ["nonstick/linux-pam-extensions"] | |
14 openpam-extensions = ["nonstick/openpam-extensions"] | |
15 | |
16 [dependencies] | |
17 nonstick = { path = ".." } | |
18 | |
19 [dev-dependencies] | |
20 anyhow = "1.0.98" | |
21 test-cdylib = "1.1.0" | |
22 thiserror = "2.0.12" |