What changed, and why it matters
This commit only changes a CI configuration file to add the 'hex' feature to automated testing matrices. It does not modify any runtime code, APIs, or dependencies that could affect security. There is no security issue or fix here.
No security action needed. Treat as routine CI/test maintenance.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The patch updates primitives/rbmt.toml to include the ‘hex’ feature in both features_with_std and features_without_std lists. This is a build/test configuration change enabling feature-combination testing in CI. No source code, dependency versions, cryptographic logic, or public interfaces are altered.
Changed components
primitives/rbmt.tomlInspect captured patch +2 / −2
diff --git a/primitives/rbmt.toml b/primitives/rbmt.toml
index 183d3c95..ba405803 100644
--- a/primitives/rbmt.toml
+++ b/primitives/rbmt.toml
@@ -7,11 +7,11 @@ 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", "hex"]
# 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", "hex"]
[lint]
allowed_duplicates = [
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.