units: add optional encoding dep to feature flag test matrix
What changed, and why it matters
This commit only changes a test configuration file (rbmt.toml) to include an optional 'encoding' feature in the automated feature-flag testing matrix. It does not modify any production code, APIs, or security-sensitive logic. There is no security issue here.
No action required; this is a benign test-matrix update.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The diff updates units/rbmt.toml, adding ‘encoding’ to the lists of features tested with and without std in the project’s feature-flag combinatorial test matrix (likely rust-bitcoin-maintainer-tools). This is a CI/testing infrastructure change with no runtime code changes.
Changed components
units/rbmt.tomlInspect captured patch +2 / −2
diff --git a/units/rbmt.toml b/units/rbmt.toml
index cd5e44fc..f5573628 100644
--- a/units/rbmt.toml
+++ b/units/rbmt.toml
@@ -7,8 +7,8 @@ examples = []
# Features to test with the conventional `std` feature enabled.
# Tests each feature alone with std, all pairs, and all together.
-features_with_std = ["serde", "arbitrary"]
+features_with_std = ["serde", "arbitrary", "encoding"]
# Features to test without the `std` feature.
# Tests each feature alone, all pairs, and all together.
-features_without_std = ["alloc", "serde", "arbitrary"]
+features_without_std = ["alloc", "serde", "arbitrary", "encoding"]
Why this scored 15/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.