mgm: remove untested gating from tested methods (#623)

Removes the `#[cfg(feature = "untested")]` gating from all methods
tested in `tests/integration.rs` and their dependent codepaths.
This commit is contained in:
Tony Arcieri (iqlusion)
2025-08-18 13:05:23 -06:00
committed by GitHub
parent 1fc807fdcb
commit 7eb7a31a28
5 changed files with 32 additions and 41 deletions
+5 -1
View File
@@ -21,7 +21,7 @@ members = [".", "cli"]
[workspace.dependencies]
sha2 = "0.11.0-rc.0"
x509-cert = { version = "0.3.0-rc.1", features = [ "builder", "hazmat" ] }
x509-cert = { version = "0.3.0-rc.1", features = ["builder", "hazmat"] }
[dependencies]
bitflags = "2.5.0"
@@ -55,6 +55,10 @@ once_cell = "1"
[features]
untested = []
[[example]]
name = "change-mode"
required-features = ["untested"]
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]