JSON-Rohbericht maschinenlesbar
{
"data": {
"repo": {
"topics": [],
"is_fork": false,
"size_kb": 1552,
"has_wiki": false,
"homepage": null,
"languages": {
"HTML": 1727,
"Rust": 593921
},
"pushed_at": "2026-07-30T16:00:30Z",
"created_at": "2022-05-13T22:50:42Z",
"owner_type": "Organization",
"updated_at": "2026-07-31T14:43:50Z",
"description": "Rust Uint crate using const-generics",
"is_archived": false,
"is_disabled": false,
"license_spdx": "MIT",
"default_branch": "main",
"license_spdx_raw": "MIT",
"primary_language": "Rust",
"significant_languages": [
"Rust"
]
},
"owner": {
"blog": "https://www.paradigm.xyz/oss/alloy",
"name": "Alloy",
"type": "Organization",
"login": "alloy-rs",
"company": null,
"location": null,
"followers": 875,
"avatar_url": "https://avatars.githubusercontent.com/u/128098468?v=4",
"created_at": "2023-03-16T21:39:55Z",
"is_verified": null,
"public_repos": 21,
"account_age_days": 1233
},
"license": {
"state": "standard",
"spdx_id": "MIT",
"raw_spdx": "MIT",
"file_present": true,
"scorecard_found": true,
"profile_has_license": true
},
"activity": {
"releases": [
{
"tag": "v1.20.0",
"kind": "minor",
"published_at": "2026-07-30T16:00:37Z"
},
{
"tag": "v1.19.0",
"kind": "minor",
"published_at": "2026-07-03T13:14:58Z"
},
{
"tag": "v1.18.0",
"kind": "minor",
"published_at": "2026-04-22T13:12:29Z"
},
{
"tag": "v1.17.2",
"kind": "patch",
"published_at": "2025-12-28T14:43:24Z"
},
{
"tag": "v1.17.1",
"kind": "patch",
"published_at": "2025-12-26T16:59:12Z"
},
{
"tag": "v1.17.0",
"kind": "minor",
"published_at": "2025-09-24T13:49:39Z"
},
{
"tag": "v1.16.0",
"kind": "minor",
"published_at": "2025-08-04T18:32:50Z"
},
{
"tag": "v1.15.0",
"kind": "minor",
"published_at": "2025-05-22T18:42:09Z"
},
{
"tag": "v1.14.0",
"kind": "minor",
"published_at": "2025-03-27T11:27:53Z"
},
{
"tag": "v1.13.1",
"kind": "patch",
"published_at": "2025-02-18T18:22:07Z"
},
{
"tag": "v1.13.0",
"kind": "minor",
"published_at": "2025-02-18T15:51:55Z"
},
{
"tag": "v1.12.4",
"kind": "patch",
"published_at": "2024-12-16T18:02:17Z"
},
{
"tag": "v1.12.3",
"kind": "patch",
"published_at": "2024-11-12T05:58:36Z"
},
{
"tag": "v1.12.1",
"kind": "patch",
"published_at": "2024-03-12T17:03:47Z"
},
{
"tag": "v1.12.0",
"kind": "minor",
"published_at": "2024-02-27T21:49:26Z"
},
{
"tag": "v1.11.1",
"kind": "patch",
"published_at": "2023-11-20T04:38:18Z"
},
{
"tag": "v1.11.0",
"kind": "minor",
"published_at": "2023-11-08T16:42:44Z"
},
{
"tag": "v1.10.1",
"kind": "patch",
"published_at": "2023-07-30T21:52:13Z"
},
{
"tag": "v1.10.0",
"kind": "minor",
"published_at": "2023-07-30T21:35:55Z"
},
{
"tag": "v1.9.0",
"kind": "minor",
"published_at": "2023-07-27T15:39:58Z"
}
],
"recent_commits": [
{
"oid": "0fccc1071272affc25d50887c24a9f9a97b746f4",
"body": "Co-authored-by: Claude Fable 5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "chore: release 1.20.0 (#620)",
"author_name": "James Prestwich",
"author_login": "prestwich",
"committed_at": "2026-07-30T15:57:22Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "cc712d57a55dcd33c2fbff84fb8fe744bbfadfa6",
"body": "…603)\n\n* fix: overflowing_shl/overflowing_shr overflow-flag false negatives\n\nThe overflow flag returned by overflowing_shl and overflowing_shr only\naccounted for bits shifted out of the tracked carry window, missing two\nclasses of discarded bits:\n\n- overflowing_shl ignored source limbs that are whol\n[…]\nopic.com>\n\n* test: cover truncation-lands-in-range shift amounts at 256 bits\n\nCo-Authored-By: Claude Fable 5 <noreply@anthropic.com>\n\n---------\n\nCo-authored-by: Claude Sonnet 5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "fix: overflowing_shl/overflowing_shr overflow-flag false negatives (#…",
"author_name": "James Prestwich",
"author_login": "prestwich",
"committed_at": "2026-07-29T19:47:34Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "c65fb92adb42eb3b0d487a35e8f2d7bd3a6982b6",
"body": "…ibcall (#604)\n\n* perf: open-code Uint PartialEq and is_zero to avoid memcmp libcall\n\nDeriving PartialEq compares the [u64; LIMBS] limb array, which LLVM lowers to a\nbcmp/memcmp libcall on targets without inline memcmp expansion (rv32/rv64\nembedded and zkVM), where the call costs far more than the c\n[…]\nargets\n\nPer review: keep the PartialEq derive (and ==-based is_zero) on all other\ntargets, where LLVM already lowers the array comparison optimally; only\nriscv32/riscv64 get the open-coded limb loops.",
"is_bot": false,
"headline": "perf: open-code Uint PartialEq and is_zero on riscv to avoid memcmp l…",
"author_name": "Valery Cherepanov",
"author_login": "Qumeric",
"committed_at": "2026-07-22T13:59:27Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "1151ed5426247a53e6ea1ab5d4ecc69544ceb84b",
"body": null,
"is_bot": false,
"headline": "docs: add agent guidelines (#618)",
"author_name": "DaniPopes",
"author_login": "DaniPopes",
"committed_at": "2026-07-11T15:29:45Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ecd22fedede79050f5042b5ffc7f2f63705add2c",
"body": "* feat: make Uint methods const\n\n* refactor: reuse significant word count\n\n* fix: short-circuit limb overflow scan\n\n* refactor: reuse const u64 conversion\n\n* docs: add PR link to changelog entry\n\nCo-Authored-By: Claude Fable 5 <noreply@anthropic.com>\nClaude-Session: https://claude.ai/code/session_01UJ4S2Ns5cyvmkTFJ7mgrWE\n\n* docs: add agent guidelines\n\n* chore: move agent guidelines\n\n---------\n\nCo-authored-by: James <james@prestwi.ch>\nCo-authored-by: Claude Fable 5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "feat: make more Uint methods const (#614)",
"author_name": "DaniPopes",
"author_login": "DaniPopes",
"committed_at": "2026-07-10T13:17:45Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "1bc9f39291154e7f55e94bf5d75a2f9da2eb3b5a",
"body": null,
"is_bot": false,
"headline": "chore: infer rustfmt edition (#619)",
"author_name": "DaniPopes",
"author_login": "DaniPopes",
"committed_at": "2026-07-10T12:40:25Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "356916045eecb3b2616f27bfd5c6c7c44d89e532",
"body": "* fix: z\n\n* test: z\n\n* test: correct expected value for lowercase 'z' in base-64\n\nLowercase 'z' decodes to 51 (26 + 25), not 25. The prior assertion\ncopied the uppercase 'Z' value.\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>\n\n* docs: add CHANGELOG entry (#605)\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>\n\n---------\n\nCo-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "z (#605)",
"author_name": "James Prestwich",
"author_login": "prestwich",
"committed_at": "2026-07-09T17:00:23Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "555d7532ca01b8d89fc63bc0b2b7080a2df65e55",
"body": "* fix: reject non-finite f64 and saturate Uint->f64 at 2^1024\n\nTwo conversion bugs surfaced only at very large BITS.\n\n1. `TryFrom<f64>` accepted NaN and ±infinity when `BITS >= 1025`.\n Non-finite inputs were only caught by the `exponent >= BITS` overflow\n check, but NaN/inf have unbiased exponen\n[…]\n.8 <noreply@anthropic.com>\n\n* docs: add CHANGELOG entry (#606)\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>\n\n---------\n\nCo-authored-by: Claude Opus 4.8 <noreply@anthropic.com>",
"is_bot": false,
"headline": "fix: reject non-finite f64 and saturate Uint→f64 at 2^1024 (#606)",
"author_name": "James Prestwich",
"author_login": "prestwich",
"committed_at": "2026-07-09T16:48:54Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "8c211d5d31903c118b416b1e88a319cbf6f343da",
"body": "… in 57..=63 (#607)\n\n* fix: try_from_*_slice returns None instead of panicking for BITS % 64 in 57..=63\n\nThe full-limb fast path in try_from_be_slice/try_from_le_slice was gated on\n`Self::BYTES % 8 == 0`, which is also true for non-limb-aligned sizes whose\nbyte count is a multiple of 8 (BITS % 64 in\n[…]\n.8 <noreply@anthropic.com>\n\n* docs: add CHANGELOG entry (#607)\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>\n\n---------\n\nCo-authored-by: Claude Opus 4.8 <noreply@anthropic.com>",
"is_bot": false,
"headline": "fix: try_from_*_slice returns None instead of panicking for BITS % 64…",
"author_name": "James Prestwich",
"author_login": "prestwich",
"committed_at": "2026-07-09T16:37:33Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "2e4ca8366d069516532adbed8becd2f2002e2547",
"body": "* fix: str radix errors now\n\n* fix: gate to_base_be_2 and from_str_radix_pow2 against base/radix < 2\n\nBoth from_str_radix_pow2's radix and SpigotBuf::new's base skipped\nvalidation before reaching code whose loop never terminates for\nvalues < 2 in release builds (radix/base 1 is a power of two, so it\n[…]\n\n\n* lint: fmt\n\n* docs: add CHANGELOG entry (#608)\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>\n\n---------\n\nCo-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "fix: str radix errors now (#608)",
"author_name": "James Prestwich",
"author_login": "prestwich",
"committed_at": "2026-07-09T16:23:35Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "28f3954a0cd9ab710a9a884826ed9294701e9a95",
"body": "* ci: run core test suite on wasm32-wasip1\n\nAdds a CI job that runs the core `ruint` test suite under\n`wasm32-wasip1` via wasmtime. This exercises the crate on a\n32-bit-pointer target, catching pointer-width bugs (e.g. the shift\namount truncation the audit found) that 64-bit hosts miss.\n\n- Cargo.tom\n[…]\nnthropic.com>\n\n* docs: add CHANGELOG entry (#609)\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>\n\n---------\n\nCo-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "ci: run core test suite on wasm32-wasip1 (#609)",
"author_name": "James Prestwich",
"author_login": "prestwich",
"committed_at": "2026-07-09T15:23:00Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "2fadbecd3e24a033efafa0fd326d9e097306f018",
"body": "* fix: checked_log/log2/log10 return None or 0 instead of panicking for tiny bit-widths\n\nThe checked_* logarithm methods are documented to return an Option and\nnever panic, but they materialized the comparison/base constants (2 and\n10) with the panicking Uint::from. Those constants overflow the type\n[…]\nreply@anthropic.com>\n\n* docs: add CHANGELOG entry for checked_log panic fix\n\nCo-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>\n\n---------\n\nCo-authored-by: Claude Opus 4.8 <noreply@anthropic.com>",
"is_bot": false,
"headline": "fix: checked_log/log2/log10 panic on tiny bit-widths (#610)",
"author_name": "James Prestwich",
"author_login": "prestwich",
"committed_at": "2026-07-09T13:35:17Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "039167f8032d332fe1c41849d1d89cbb3bb0bcf0",
"body": "* docs: fix incorrect comments in add/mul/gcd algorithms\n\nThree documentation-only defects where comments contradicted the code:\n\n- borrowing_sub_n: doc said `lhs -= rhs - borrow`; the code computes\n per-limb `lhs[i] - rhs[i] - borrow`, i.e. `lhs -= rhs + borrow`.\n- submul_nx1: the returned borrow \n[…]\nnthropic.com>\n\n* docs: add CHANGELOG entry (#611)\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>\n\n---------\n\nCo-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "docs: fix incorrect comments in add/mul/gcd algorithms (#611)",
"author_name": "James Prestwich",
"author_login": "prestwich",
"committed_at": "2026-07-09T13:19:35Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "841cb344968fe27bf11e5d5fc8283a52f9f67186",
"body": "* fix(algorithms): close soundness and safety-contract gaps\n\nAddress three soundness/documentation gaps in the (unstable) `algorithms`\nmodule surfaced by security review:\n\n- `addmul_nx1`/`submul_nx1`: these safe `pub const fn`s ran\n `assume!(lhs.len() == a.len())`, which lowers to `unreachable_unch\n[…]\nnthropic.com>\n\n* docs: add CHANGELOG entry (#612)\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>\n\n---------\n\nCo-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "fix(algorithms): close soundness and safety-contract gaps (#612)",
"author_name": "James Prestwich",
"author_login": "prestwich",
"committed_at": "2026-07-09T12:31:46Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "e617c1d30af1b0a4189ec17d0c475bb711845b9a",
"body": null,
"is_bot": false,
"headline": "chore: release 1.19.0 (#602)",
"author_name": "James Prestwich",
"author_login": "prestwich",
"committed_at": "2026-07-03T12:45:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "570d8e424d9942c3919bcceb16321605108b9b54",
"body": "* chore: group weekly dependabot updates\n\nIgnore optional Cargo crates so feature-gated integrations stay manually updated.\n\n* rm cargo",
"is_bot": false,
"headline": "chore: group weekly GitHub Actions updates (#597)",
"author_name": "DaniPopes",
"author_login": "DaniPopes",
"committed_at": "2026-06-27T09:16:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c3277975b046f9f31a39b817fa0940c7566dfbee",
"body": "Mirror the standard library strict_* arithmetic methods, which always\npanic on overflow regardless of overflow-checks. Adds strict_add,\nstrict_sub, strict_neg, strict_mul, strict_pow, strict_shl, strict_shr,\nstrict_div and strict_rem next to their checked_ counterparts, reusing\nthe existing overflow\n[…]\nocks.\n\nCloses #532\n\nCo-authored-by: 0xMars42 <195151467+0xMars42@users.noreply.github.com>\nCo-authored-by: James <james@prestwi.ch>\nCo-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "feat: add strict_* operations (#595)",
"author_name": "0xMars42",
"author_login": "0xMars42",
"committed_at": "2026-06-27T09:01:31Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "c2b51f16d18edbac1714bfc5965f879fc8dfe755",
"body": null,
"is_bot": false,
"headline": "chore(meta): update CODEOWNERS (#599)",
"author_name": "DaniPopes",
"author_login": "DaniPopes",
"committed_at": "2026-06-27T08:57:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f6f2449285d280241f1a2bf4f1ea27ab16f03d55",
"body": "Resolve unmapped TODO authors from GitHub commit metadata instead of assuming every blame email is in the static user map. This prevents the tracker from crashing when rendering issues attributed to newer contributors. Also update PyGithub token auth and move the cache action to the current Node 24 major.",
"is_bot": false,
"headline": "fix(ci): harden issue tracker (#601)",
"author_name": "DaniPopes",
"author_login": "DaniPopes",
"committed_at": "2026-06-27T08:53:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "328b61213082ce6901c0541aea5621c2fb5fae62",
"body": null,
"is_bot": false,
"headline": "chore: clippy (#600)",
"author_name": "DaniPopes",
"author_login": "DaniPopes",
"committed_at": "2026-06-27T08:49:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4319f2289713d0696b4417cb0b67677c16dad061",
"body": "Ignore current advisories for optional feature and dev support crates where ruint does not use the affected APIs.",
"is_bot": false,
"headline": "chore: ignore cargo-deny advisories (#598)",
"author_name": "DaniPopes",
"author_login": "DaniPopes",
"committed_at": "2026-06-24T10:27:11Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6cafc3971ccb024deb0225c8e22f18ec41b30802",
"body": "Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 7.\n- [Release notes](https://github.com/actions/checkout/releases)\n- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)\n- [Commits](https://github.com/actions/checkout/compare/v5...v7)\n\n---\nupdated-dependenc\n[…]\nirect:production\n update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "chore(deps): bump actions/checkout from 5 to 7 (#596)",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-06-21T22:05:21Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "d2ec39c4a3f8dff2eea7a98376674a6a342506c6",
"body": "* feat: make mul fns const\n\n* refactor: shadow mul limb\n\n* feat: make from_str_radix const\n\n* test: cover slow radix parsing\n\n* perf: improve const radix parsing loops\n\n* perf: improve const mul loops\n\n* Revert \"perf: improve const mul loops\"\n\nThis reverts commit ef4608b880574afbea48bd98d74e985050c1\n[…]\narsing loop name\n\n* refactor: preserve bytes loop name\n\n* clean\n\n* fix: preserve parser loop codegen\n\n* docs: explain const iterator macro safety\n\n* refactor: use unchecked const range increment\n\n* ci",
"is_bot": false,
"headline": "feat: make from_str_radix const (#591)",
"author_name": "DaniPopes",
"author_login": "DaniPopes",
"committed_at": "2026-05-28T07:19:07Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "1d869e4d1e5482bd75cbbe453b427c98797c5265",
"body": "* feat: make mul fns const\n\n* refactor: shadow mul limb\n\n* perf: improve const mul loops\n\n* Revert \"perf: improve const mul loops\"\n\nThis reverts commit ef4608b880574afbea48bd98d74e985050c1aca8.\n\n* test: use const block for mul coverage\n\n* refactor: use const range macro\n\n* refactor: rename mul range\n[…]\nmul\n\n* refactor: use mut slice range loop\n\n* refactor: use slice range loops in mul\n\n* refactor: support range macro patterns\n\n* refactor: preserve mul loop names\n\n* refactor: preserve bytes loop name",
"is_bot": false,
"headline": "feat: make mul fns const (#590)",
"author_name": "DaniPopes",
"author_login": "DaniPopes",
"committed_at": "2026-05-23T21:30:37Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "5ce9c7cd241d4dd42ce036d5b47e5cf445f054fc",
"body": "refactor: add const range macro",
"is_bot": false,
"headline": "Merge pull request #592 from alloy-rs/dani/const-range-macro",
"author_name": "DaniPopes",
"author_login": "DaniPopes",
"committed_at": "2026-05-23T18:50:38Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "461c6fbedffc1e0c8f676992dbbc97da9d4f3ae0",
"body": null,
"is_bot": false,
"headline": "refactor: simplify range macro syntax",
"author_name": "DaniPopes",
"author_login": "DaniPopes",
"committed_at": "2026-05-23T18:48:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a87d22fac9785918e5d37717e3912199e1ae1023",
"body": null,
"is_bot": false,
"headline": "refactor: move range macro to macros",
"author_name": "DaniPopes",
"author_login": "DaniPopes",
"committed_at": "2026-05-23T18:44:38Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9dd244dfdf3bfee8c7a7baa57a04dd0ad76f6cc3",
"body": null,
"is_bot": false,
"headline": "fix: isolate private range macro",
"author_name": "DaniPopes",
"author_login": "DaniPopes",
"committed_at": "2026-05-23T18:41:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ccc73090d72c5c418934ceac2b876bee7ac6b1f8",
"body": null,
"is_bot": false,
"headline": "refactor: keep range loop macro private",
"author_name": "DaniPopes",
"author_login": "DaniPopes",
"committed_at": "2026-05-23T18:40:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "04c2a37e9c2f90f1ffd1d09c5ecf862f44af3fbe",
"body": null,
"is_bot": false,
"headline": "fix: prefer const_for list arms",
"author_name": "DaniPopes",
"author_login": "DaniPopes",
"committed_at": "2026-05-23T18:36:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9e22512e462dea05aa1e221d82549af4e25e36f8",
"body": null,
"is_bot": false,
"headline": "refactor: fold range loop into const_for",
"author_name": "DaniPopes",
"author_login": "DaniPopes",
"committed_at": "2026-05-23T18:35:14Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4148adb148561a46205f9b4bc8a3f1f4843ab614",
"body": null,
"is_bot": false,
"headline": "refactor: rename const range macro",
"author_name": "DaniPopes",
"author_login": "DaniPopes",
"committed_at": "2026-05-23T18:31:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "971148cfa97ef006d6ae548ac432f127f19ad46e",
"body": null,
"is_bot": false,
"headline": "refactor: add const range macro",
"author_name": "DaniPopes",
"author_login": "DaniPopes",
"committed_at": "2026-05-23T18:26:01Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "eece7bb9b5bafdaf6bacffb0f25e177098ffdec4",
"body": "refactor: replace double word trait",
"is_bot": false,
"headline": "Merge pull request #589 from alloy-rs/dani/dw-helper",
"author_name": "DaniPopes",
"author_login": "DaniPopes",
"committed_at": "2026-05-23T16:23:03Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9c2c105fce751a20a51df2be1e0842462f1f04b7",
"body": null,
"is_bot": false,
"headline": "refactor: replace double word trait",
"author_name": "DaniPopes",
"author_login": "DaniPopes",
"committed_at": "2026-05-23T15:29:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "09af8b813b6c33a46d5447364cf3ceb77a6937d2",
"body": "ci: make Accept gate fail when any required job fails",
"is_bot": false,
"headline": "Merge pull request #585 from alloy-rs/prestwich/fix-accept-gate",
"author_name": "DaniPopes",
"author_login": "DaniPopes",
"committed_at": "2026-05-11T09:56:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ed9be8cd4293ac5a358bf4f6eef637fc4bacc5c1",
"body": "Adopts the alls-green pattern used in alloy-rs/core for consistency\nacross the org.\n\nCo-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "ci: use re-actors/alls-green for Accept gate",
"author_name": "James",
"author_login": "prestwich",
"committed_at": "2026-05-08T11:53:38Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "5c8a48d1059f02334fcceb2d07a09aadbe0f6bd6",
"body": null,
"is_bot": false,
"headline": "Merge branch 'main' into prestwich/fix-accept-gate",
"author_name": "James Prestwich",
"author_login": "prestwich",
"committed_at": "2026-05-08T11:41:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c910174cc6cc5c52d5778e7dda2cb2c8e506a72d",
"body": null,
"is_bot": false,
"headline": "Merge pull request #586 from DaniPopes/dani/rename-repo-references",
"author_name": "DaniPopes",
"author_login": "DaniPopes",
"committed_at": "2026-05-08T09:00:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "979e2b6f09270b051aae74e7e59951e16ebebf5d",
"body": null,
"is_bot": false,
"headline": "Merge branch 'main' into dani/rename-repo-references",
"author_name": "James Prestwich",
"author_login": "prestwich",
"committed_at": "2026-05-08T08:39:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e17160d79521e658c6b7cc8576008e68117bf151",
"body": "feat: add ark-ff-06",
"is_bot": false,
"headline": "Merge pull request #584 from Robert-MacWha/main",
"author_name": "James Prestwich",
"author_login": "prestwich",
"committed_at": "2026-05-08T08:39:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4ef44014a9e3b5795c8690bcca01acdd2c302759",
"body": null,
"is_bot": false,
"headline": "docs: update repository links",
"author_name": "DaniPopes",
"author_login": "DaniPopes",
"committed_at": "2026-05-08T08:34:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "27db5c16ce878595e2202f34e8902d4435b72425",
"body": "The Accept job used the default GitHub Actions behavior, which skips\ndownstream jobs when a dependency fails. Branch protection treats a\n\"skipped\" required check as non-blocking, so an automerge could fire\neven with failing tests/clippy (as happened on #576).\n\nRun Accept unconditionally with `if: always()` and explicitly fail\nwhen any need is not \"success\", turning the gate into a real failure\nthat branch protection blocks on.",
"is_bot": false,
"headline": "ci: make Accept gate fail when any required job fails",
"author_name": "James",
"author_login": "prestwich",
"committed_at": "2026-05-08T07:42:42Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3dc44f0610de0770514ce92427436d21484c112c",
"body": null,
"is_bot": false,
"headline": "feat: add ark-ff-06",
"author_name": "Robert MacWha",
"author_login": "Robert-MacWha",
"committed_at": "2026-05-07T23:34:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "836a44f22fd30281b354f7a5c54872e8852d2505",
"body": "perf: compare using subtraction",
"is_bot": false,
"headline": "Merge pull request #579 from DaniPopes/cmp-with-sub-revived",
"author_name": "James Prestwich",
"author_login": "prestwich",
"committed_at": "2026-04-30T16:07:53Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2e73bfdd1ab516a7404793f4766d08ad97f32c32",
"body": null,
"is_bot": false,
"headline": "Merge branch 'main' into cmp-with-sub-revived",
"author_name": "James Prestwich",
"author_login": "prestwich",
"committed_at": "2026-04-30T16:02:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ff05f070f429c266f2660f61e4b2313180bfda8d",
"body": null,
"is_bot": false,
"headline": "Merge pull request #580 from DaniPopes/fix-be",
"author_name": "James Prestwich",
"author_login": "prestwich",
"committed_at": "2026-04-30T00:09:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9f265b6b2c04c0b40a7815da06b60185ca1d7519",
"body": null,
"is_bot": false,
"headline": "chore: fix to_be_bytes",
"author_name": "DaniPopes",
"author_login": "DaniPopes",
"committed_at": "2026-04-30T00:06:26Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "57b64b0e90c16ff4817469a97f617f707a9d18bf",
"body": "Fix `to_be_bytes` on big-endian platforms",
"is_bot": false,
"headline": "Merge pull request #576 from kayabaNerve/patch-1",
"author_name": "James Prestwich",
"author_login": "prestwich",
"committed_at": "2026-04-29T23:58:31Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "da019733ad3d44ebfb69822623af2a1cce69d402",
"body": null,
"is_bot": false,
"headline": "Merge branch 'main' into patch-1",
"author_name": "James Prestwich",
"author_login": "prestwich",
"committed_at": "2026-04-29T23:56:22Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "25a54014b45ae2c91a901857b5e1123e6070f138",
"body": "perf: optimize bit count helpers",
"is_bot": false,
"headline": "Merge pull request #578 from DaniPopes/optimize-bit-counts",
"author_name": "James Prestwich",
"author_login": "prestwich",
"committed_at": "2026-04-29T23:56:10Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d8d83bc318f523dfc101fcf8a26b02123623818c",
"body": null,
"is_bot": false,
"headline": "docs: clarify cmp codegen hack",
"author_name": "DaniPopes",
"author_login": "DaniPopes",
"committed_at": "2026-04-29T00:31:03Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ce2e2e2d957154440aaf33dd6c28f7d79e35ff7c",
"body": null,
"is_bot": false,
"headline": "fix: support subborrow on MSRV",
"author_name": "DaniPopes",
"author_login": "DaniPopes",
"committed_at": "2026-04-29T00:09:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e88792900593874769d7c31a686e797476760cd5",
"body": null,
"is_bot": false,
"headline": "perf: use x86 subborrow intrinsic for cmp",
"author_name": "DaniPopes",
"author_login": "DaniPopes",
"committed_at": "2026-04-28T23:54:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d65307109d0a0bc0b68ec896f2990315f743e9f4",
"body": null,
"is_bot": false,
"headline": "perf: keep borrow-chain codegen hack",
"author_name": "DaniPopes",
"author_login": "DaniPopes",
"committed_at": "2026-04-28T23:46:50Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ce9f0a8aa38b8c51f5de23ff8959ccbf9f75aff5",
"body": null,
"is_bot": false,
"headline": "perf: use comparison algorithm in Ord",
"author_name": "DaniPopes",
"author_login": "DaniPopes",
"committed_at": "2026-04-28T23:30:25Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ee1e512256684d93d2351e8a8fed08f016e9c020",
"body": null,
"is_bot": false,
"headline": "perf: use stable borrowing_sub for cmp",
"author_name": "DaniPopes",
"author_login": "DaniPopes",
"committed_at": "2026-04-28T23:27:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5e8925f4b98c6e7e57c4516b4e2133e4c95f0799",
"body": null,
"is_bot": false,
"headline": "perf: compare using subtraction",
"author_name": "DaniPopes",
"author_login": "DaniPopes",
"committed_at": "2026-04-28T23:14:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "660aad6aaafce9ed4ce71efc8da641b704b49fb1",
"body": null,
"is_bot": false,
"headline": "test: cover primitive bit count branches",
"author_name": "DaniPopes",
"author_login": "DaniPopes",
"committed_at": "2026-04-28T23:02:43Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c71996f5b9454649241c7ebe7b56c000a0112c63",
"body": null,
"is_bot": false,
"headline": "test: align leading zero coverage",
"author_name": "DaniPopes",
"author_login": "DaniPopes",
"committed_at": "2026-04-28T22:58:43Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1d6abbf0bd51915db084e8e2c68ca05698b5a736",
"body": null,
"is_bot": false,
"headline": "perf: optimize bit count helpers",
"author_name": "DaniPopes",
"author_login": "DaniPopes",
"committed_at": "2026-04-28T22:46:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "398df2dd659990361e4ef4f8ccea7053213abcd0",
"body": "This assumed `u64` would have a little-endian representation and\nunconditionally call `swap_bytes`.",
"is_bot": false,
"headline": "Fix `to_be_bytes` on big-endian platforms",
"author_name": "Luke Parker",
"author_login": "kayabaNerve",
"committed_at": "2026-04-28T20:45:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6711003461877060abda72e8ef5be121713133d4",
"body": "perf: optimize shift implementations",
"is_bot": false,
"headline": "Merge pull request #574 from DaniPopes/dani/better-shifts",
"author_name": "James Prestwich",
"author_login": "prestwich",
"committed_at": "2026-04-27T15:44:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "441e078ec936def195f2c15c59a4a24290353775",
"body": null,
"is_bot": false,
"headline": "Merge branch 'main' into dani/better-shifts",
"author_name": "James Prestwich",
"author_login": "prestwich",
"committed_at": "2026-04-24T20:20:53Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "bff85c8c1f2d4fea9cd58fd6f03e80eda34b8bad",
"body": "chore: remove clippy msrv",
"is_bot": false,
"headline": "Merge pull request #573 from DaniPopes/clippies2",
"author_name": "James Prestwich",
"author_login": "prestwich",
"committed_at": "2026-04-24T20:20:41Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d4edbde215e0936c509ba902af2698fa0f132b73",
"body": "- Use unbounded_shl/unbounded_shr in the generic loop to expose the\n funnel shift pattern to LLVM (replacing the two-step carry trick)\n- Add specialized u64/u128/u256 fast paths in wrapping_shl/wrapping_shr\n via as_primitives! macro\n- u256 path uses branchless two-i128-half decomposition with mask\n blending, emitting shld/shrd + cmov with no branches",
"is_bot": false,
"headline": "perf: optimize shift implementations",
"author_name": "DaniPopes",
"author_login": "DaniPopes",
"committed_at": "2026-04-23T23:26:01Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ee6a86f18077f0918bc326d7387db49753a0ab8b",
"body": null,
"is_bot": false,
"headline": "chore: rm shift algos dead code",
"author_name": "DaniPopes",
"author_login": "DaniPopes",
"committed_at": "2026-04-23T22:20:44Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2e2e9205590f66b5d859f44310aae9df8c6d2734",
"body": null,
"is_bot": false,
"headline": "chore: remove clippy msrv",
"author_name": "DaniPopes",
"author_login": "DaniPopes",
"committed_at": "2026-04-23T21:26:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a21eb25cbf0a60ba6df34b7528ef7179782bb9dc",
"body": "fix: resolve easy TODOs and doc issues",
"is_bot": false,
"headline": "Merge pull request #571 from DaniPopes/dani/fix-easy-todos",
"author_name": "James Prestwich",
"author_login": "prestwich",
"committed_at": "2026-04-23T18:53:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "062b991434b635302273a1bc195e4fe76d6a1d37",
"body": null,
"is_bot": false,
"headline": "Merge branch 'main' into dani/fix-easy-todos",
"author_name": "James Prestwich",
"author_login": "prestwich",
"committed_at": "2026-04-23T18:50:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "95594bdc3b8a7b3ef84abfe61ef1932dfe576f37",
"body": "chore: release 1.18.0",
"is_bot": false,
"headline": "Merge pull request #572 from DaniPopes/release-1.18.0",
"author_name": "James Prestwich",
"author_login": "prestwich",
"committed_at": "2026-04-22T13:09:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b5430738bcd4827c85002a9bcbc25b203efa21ca",
"body": null,
"is_bot": false,
"headline": "chore: release 1.18.0",
"author_name": "DaniPopes",
"author_login": "DaniPopes",
"committed_at": "2026-04-21T22:57:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "edefe622590b569e495422cc7ba97a8bb4aa66fe",
"body": null,
"is_bot": false,
"headline": "Merge branch 'main' into dani/fix-easy-todos",
"author_name": "DaniPopes",
"author_login": "DaniPopes",
"committed_at": "2026-04-21T22:40:41Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "96c32be0de0932c8a69bce3911d25d886c5528b5",
"body": "- perf(cmp): use counter-based const_eq for better x86_64 codegen\n- docs(gcd): fix incorrect panic doc on Matrix::from_u64\n- chore: remove stale TODO suffix from missing_docs allow\n- chore: justify clippy::similar_names allow with paper reference",
"is_bot": false,
"headline": "fix: resolve easy TODOs and doc issues",
"author_name": "DaniPopes",
"author_login": "DaniPopes",
"committed_at": "2026-04-21T22:40:16Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4af858c11d91dc00d5fe781dea4d84b3f296a7b0",
"body": "chore: bump MSRV to 1.90",
"is_bot": false,
"headline": "Merge pull request #570 from DaniPopes/dani/msrv-1.90",
"author_name": "James Prestwich",
"author_login": "prestwich",
"committed_at": "2026-04-21T20:52:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "313b839162d17d4e8c93086a08538bc3cdaafe61",
"body": null,
"is_bot": false,
"headline": "Merge branch 'main' into dani/msrv-1.90",
"author_name": "DaniPopes",
"author_login": "DaniPopes",
"committed_at": "2026-04-21T19:51:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "403227fb38bc8a5b9e8903f7f4646ed8a9695fa7",
"body": null,
"is_bot": false,
"headline": "Merge pull request #569 from pepyakin/pep/to-be-bytes-fast-path",
"author_name": "James Prestwich",
"author_login": "prestwich",
"committed_at": "2026-04-21T19:46:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "40f8f71e511efd1990368146013382114fd4e3f8",
"body": "Replace the manual const reverse loop in `to_be_bytes` with\n`bytes.reverse()`, which is const-stable as of Rust 1.90.",
"is_bot": false,
"headline": "chore: bump MSRV to 1.90",
"author_name": "DaniPopes",
"author_login": "DaniPopes",
"committed_at": "2026-04-21T19:44:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "44419d8b6e61aec868da8f84a587ac1897a48d75",
"body": "Special case the BYTES = LIMBS * 8 so to compel LLVM\ngenerate the proper machine code.\n\nIn the wild, it was observed that LLVM[^1] generated this\non x86-64:\n\n```\n;; ── limb3 (rdx) — written BYTE BY BYTE ──\nmov %rdx,%rax ; copy limb3\nshr $0x38,%rax ; extract byte \n[…]\n0x1f(%rcx,%rbx) ; store byte 31\n```\n\nOn M1 every limb was generated byte-by-byte.\n\nThis changeset is verified to generate moves + bswap.\n\n[^1]: rustc 1.94.0-nightly (2026-01-12) with LLVM 21.1.8.",
"is_bot": false,
"headline": "perf: nudge LLVM codegen good to_bytes_be",
"author_name": "Sergei Shulepov",
"author_login": "pepyakin",
"committed_at": "2026-04-21T15:14:37Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "fd262382f52a63051fb5abcf2acf24b3ee603ff5",
"body": "docs: link to ruint-uniffi for FFI support",
"is_bot": false,
"headline": "Merge pull request #567 from paolodamico/ruint-uniffi-docs",
"author_name": "James Prestwich",
"author_login": "prestwich",
"committed_at": "2026-04-07T15:01:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "35a75feb7d9590ef4d5784bff22f0ffd32664bc4",
"body": null,
"is_bot": false,
"headline": "Merge branch 'main' into ruint-uniffi-docs",
"author_name": "James Prestwich",
"author_login": "prestwich",
"committed_at": "2026-04-06T19:10:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8535bba38d2f20f4990e92559d963bca57d684db",
"body": "perf: extract last iteration on mul loop",
"is_bot": false,
"headline": "Merge pull request #566 from DaniPopes/better-mul",
"author_name": "James Prestwich",
"author_login": "prestwich",
"committed_at": "2026-04-06T19:06:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "50c1e1f8f0337e4919de6efac27df2ca31b89550",
"body": null,
"is_bot": false,
"headline": "perf: extract last iteration on mul loop",
"author_name": "DaniPopes",
"author_login": "DaniPopes",
"committed_at": "2026-03-27T16:40:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "65f4673a35a2e2dfe7752b916fa9b17ae54489ab",
"body": null,
"is_bot": false,
"headline": "chore: ci baseline",
"author_name": "DaniPopes",
"author_login": "DaniPopes",
"committed_at": "2026-03-27T16:38:25Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3daddadbbe3d2d15a3b3fe14aa7f5797cd372343",
"body": null,
"is_bot": false,
"headline": "docs: link to ruint-uniffi for FFI support",
"author_name": "pd",
"author_login": "paolodamico",
"committed_at": "2026-03-27T16:08:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a5d8e2c7a5f9cdb8c9bf0b267529a5e8b365c956",
"body": "perf: use bit shifts for power-of-two formatting",
"is_bot": false,
"headline": "Merge pull request #565 from DaniPopes/dani/fmt-pow2-fast-paths",
"author_name": "James Prestwich",
"author_login": "prestwich",
"committed_at": "2026-02-12T01:08:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "04e7742dd1d83793200d1ad83d3ee05eace32ea1",
"body": null,
"is_bot": false,
"headline": "Merge branch 'main' into dani/fmt-pow2-fast-paths",
"author_name": "DaniPopes",
"author_login": "DaniPopes",
"committed_at": "2026-02-12T00:27:12Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fa46a214ed668989aa2152470553dd79dd1ba76d",
"body": "perf: optimize from_str_radix",
"is_bot": false,
"headline": "Merge pull request #557 from DaniPopes/dani/from-str-radix-perf",
"author_name": "James Prestwich",
"author_login": "prestwich",
"committed_at": "2026-02-12T00:23:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d7e0bd7bb48d55cc0032a95a4d97626fed41d4fa",
"body": null,
"is_bot": false,
"headline": "perf: use bit shifts for power-of-two formatting",
"author_name": "DaniPopes",
"author_login": "DaniPopes",
"committed_at": "2026-02-12T00:08:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "744ecc7fc7e785b8ce1fa48bf3eaf1ffd4483c6b",
"body": "# Conflicts:\n#\tCHANGELOG.md",
"is_bot": false,
"headline": "Merge branch 'main' into dani/from-str-radix-perf",
"author_name": "DaniPopes",
"author_login": "DaniPopes",
"committed_at": "2026-02-12T00:00:42Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "bc691c1cbfcb76af39d3828a7495b4632ab52f8a",
"body": "perf: specialize cmp, const_eq, const_is_zero for small sizes",
"is_bot": false,
"headline": "Merge pull request #561 from DaniPopes/dani/cmp-specialization",
"author_name": "James Prestwich",
"author_login": "prestwich",
"committed_at": "2026-02-10T20:59:28Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b89a7657a9e1820b0e95b322b00b60dece15cb04",
"body": null,
"is_bot": false,
"headline": "perf: specialize Ord::cmp for small sizes",
"author_name": "DaniPopes",
"author_login": "DaniPopes",
"committed_at": "2026-02-07T06:04:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "89f64de2f2c4a52526cea0de11edc1f05366a6ab",
"body": null,
"is_bot": false,
"headline": "perf: optimize from_str_radix",
"author_name": "DaniPopes",
"author_login": "DaniPopes",
"committed_at": "2026-02-07T02:50:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c147f59069412205135ba8375624394506f50418",
"body": "chore(deps): bump codspeed",
"is_bot": false,
"headline": "Merge pull request #558 from DaniPopes/dani/bump-codspeed",
"author_name": "Georgios Konstantopoulos",
"author_login": "gakonst",
"committed_at": "2026-02-07T02:25:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0380e96ac09d9389be9a78c1209db6f326979959",
"body": null,
"is_bot": false,
"headline": "chore: clippy",
"author_name": "DaniPopes",
"author_login": "DaniPopes",
"committed_at": "2026-02-07T02:21:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e7c96c772a070c025bca4701e696007e216881b2",
"body": null,
"is_bot": false,
"headline": "deny",
"author_name": "DaniPopes",
"author_login": "DaniPopes",
"committed_at": "2026-02-07T01:42:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7951f47e76f7ef0b2a851edb6bab5c7fd1c2ced8",
"body": null,
"is_bot": false,
"headline": "chore(deps): bump codspeed",
"author_name": "DaniPopes",
"author_login": "DaniPopes",
"committed_at": "2026-02-07T01:38:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "71b155bdf61cef29d92cd59d1a7b681b46e9626c",
"body": "Use rkyv::primitive::ArchivedU64",
"is_bot": false,
"headline": "Merge pull request #556 from DenisGorbachev/fix/rkyv-archived-u64",
"author_name": "James Prestwich",
"author_login": "prestwich",
"committed_at": "2026-01-31T04:13:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8c80f5e3fabd91674ceee5c0ec4dfad822181119",
"body": null,
"is_bot": false,
"headline": "fix: use rkyv::primitive::ArchivedU64",
"author_name": "Denis Gorbachev",
"author_login": "DenisGorbachev",
"committed_at": "2026-01-30T08:45:11Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5bd4cff6ae3960591d750cdd7356e24aa086b67a",
"body": "chore: release 1.17.2",
"is_bot": false,
"headline": "Merge pull request #555 from DaniPopes/release-1.17.2",
"author_name": "James Prestwich",
"author_login": "prestwich",
"committed_at": "2025-12-28T14:40:51Z",
"body_truncated": false,
"is_coding_agent": false
}
],
"releases_count": 20,
"commits_last_year": 167,
"latest_release_at": "2026-07-30T16:00:37Z",
"latest_release_tag": "v1.20.0",
"releases_from_tags": false,
"days_since_last_push": 1,
"active_weeks_last_year": 25,
"days_since_latest_release": 1,
"mean_days_between_releases": 58.5
},
"community": {
"has_readme": true,
"has_license": true,
"has_description": true,
"has_contributing": false,
"health_percentage": 62,
"has_issue_template": false,
"has_code_of_conduct": false,
"has_pull_request_template": true
},
"ecosystem": {
"packages": [
{
"name": "ruint",
"exists": true,
"license": "MIT",
"keywords": [
"uint",
"mathematics"
],
"ecosystem": "crates",
"matches_repo": true,
"registry_url": "https://crates.io/crates/ruint",
"is_deprecated": false,
"latest_version": "1.20.0",
"repository_url": "https://github.com/alloy-rs/ruint",
"versions_count": 35,
"total_downloads": 24372986,
"dependents_count": null,
"deprecation_note": null,
"maintainers_count": null,
"monthly_downloads": 2213030,
"first_published_at": "2022-05-15T19:44:01.504937Z",
"latest_published_at": "2026-07-30T16:00:21.166231Z",
"latest_version_yanked": false,
"days_since_latest_publish": 1
},
{
"name": "ruint-macro",
"exists": true,
"license": "MIT",
"keywords": [
"macro",
"uint",
"mathematics"
],
"ecosystem": "crates",
"matches_repo": false,
"registry_url": "https://crates.io/crates/ruint-macro",
"is_deprecated": false,
"latest_version": "1.2.1",
"repository_url": "https://github.com/recmo/uint",
"versions_count": 10,
"total_downloads": 22686921,
"dependents_count": null,
"deprecation_note": null,
"maintainers_count": null,
"monthly_downloads": 2059915,
"first_published_at": "2022-05-15T19:43:15.556261Z",
"latest_published_at": "2024-06-03T16:39:36.769412Z",
"latest_version_yanked": false,
"days_since_latest_publish": 788
}
]
},
"popularity": {
"forks": 69,
"stars": 224,
"watchers": 6,
"fork_history": {
"days": [
{
"date": "2022-05-20",
"count": 1
},
{
"date": "2022-09-16",
"count": 1
},
{
"date": "2022-09-22",
"count": 1
},
{
"date": "2022-10-02",
"count": 1
},
{
"date": "2022-10-18",
"count": 1
},
{
"date": "2022-10-20",
"count": 1
},
{
"date": "2022-10-31",
"count": 1
},
{
"date": "2022-11-04",
"count": 1
},
{
"date": "2022-12-19",
"count": 1
},
{
"date": "2023-01-03",
"count": 2
},
{
"date": "2023-02-22",
"count": 1
},
{
"date": "2023-03-06",
"count": 1
},
{
"date": "2023-03-20",
"count": 1
},
{
"date": "2023-03-26",
"count": 1
},
{
"date": "2023-07-01",
"count": 1
},
{
"date": "2023-07-31",
"count": 1
},
{
"date": "2023-08-03",
"count": 1
},
{
"date": "2023-08-17",
"count": 1
},
{
"date": "2023-09-03",
"count": 1
},
{
"date": "2023-09-10",
"count": 1
},
{
"date": "2023-09-12",
"count": 1
},
{
"date": "2023-09-19",
"count": 1
},
{
"date": "2023-11-04",
"count": 1
},
{
"date": "2023-11-08",
"count": 1
},
{
"date": "2023-11-28",
"count": 1
},
{
"date": "2024-01-16",
"count": 1
},
{
"date": "2024-03-02",
"count": 1
},
{
"date": "2024-03-19",
"count": 1
},
{
"date": "2024-03-28",
"count": 1
},
{
"date": "2024-04-04",
"count": 1
},
{
"date": "2024-04-14",
"count": 1
},
{
"date": "2024-06-16",
"count": 1
},
{
"date": "2024-08-18",
"count": 1
},
{
"date": "2024-08-20",
"count": 1
},
{
"date": "2024-09-03",
"count": 1
},
{
"date": "2024-10-15",
"count": 1
},
{
"date": "2024-11-08",
"count": 1
},
{
"date": "2024-11-19",
"count": 1
},
{
"date": "2024-11-27",
"count": 1
},
{
"date": "2024-12-11",
"count": 1
},
{
"date": "2024-12-16",
"count": 2
},
{
"date": "2024-12-17",
"count": 1
},
{
"date": "2025-01-02",
"count": 1
},
{
"date": "2025-02-17",
"count": 1
},
{
"date": "2025-03-28",
"count": 1
},
{
"date": "2025-04-16",
"count": 1
},
{
"date": "2025-05-29",
"count": 1
},
{
"date": "2025-06-26",
"count": 1
},
{
"date": "2025-07-07",
"count": 1
},
{
"date": "2025-07-23",
"count": 1
},
{
"date": "2025-08-04",
"count": 1
},
{
"date": "2025-08-13",
"count": 1
},
{
"date": "2025-09-07",
"count": 1
},
{
"date": "2025-09-12",
"count": 1
},
{
"date": "2025-10-06",
"count": 1
},
{
"date": "2025-11-25",
"count": 1
},
{
"date": "2025-12-25",
"count": 1
},
{
"date": "2026-01-30",
"count": 1
},
{
"date": "2026-02-09",
"count": 1
},
{
"date": "2026-04-21",
"count": 1
},
{
"date": "2026-04-28",
"count": 1
},
{
"date": "2026-05-05",
"count": 1
},
{
"date": "2026-05-07",
"count": 1
},
{
"date": "2026-05-13",
"count": 1
},
{
"date": "2026-06-11",
"count": 1
},
{
"date": "2026-06-14",
"count": 1
},
{
"date": "2026-07-03",
"count": 1
}
],
"complete": true,
"collected": 69,
"total_forks": 69
},
"star_history": null,
"open_issues_and_prs": 69
},
"ai_readiness": {
"has_nix": false,
"example_dirs": [],
"has_llms_txt": false,
"has_dockerfile": false,
"has_mcp_signal": false,
"bootstrap_files": [],
"api_schema_files": [],
"has_devcontainer": false,
"typecheck_configs": [],
"toolchain_manifests": [
"Cargo.toml",
"ruint-bench/Cargo.toml",
"ruint-macro/Cargo.toml"
],
"largest_source_bytes": 51714,
"source_files_sampled": 94,
"oversized_source_files": 0,
"agent_instruction_files": [
"AGENTS.md"
],
"agent_instruction_max_bytes": 1671
},
"dependencies": {
"manifests": [
"Cargo.toml",
"ruint-bench/Cargo.toml",
"ruint-macro/Cargo.toml"
],
"advisories": {
"error": "No resolved dependencies carried a version and a supported ecosystem",
"scope": "repository_graph",
"source": null,
"findings": [],
"collected": false,
"malicious": [],
"truncated": false,
"by_severity": {},
"advisory_count": 0,
"affected_count": 0,
"assessed_count": 0,
"malicious_count": 0,
"assessed_package": null,
"unassessed_count": 40,
"direct_affected_count": 0
},
"ecosystems": [
"crates"
],
"dependencies": [
{
"name": "ruint-macro",
"manifest": "Cargo.toml",
"ecosystem": "crates",
"version_constraint": "1.2.1"
},
{
"name": "thiserror",
"manifest": "Cargo.toml",
"ecosystem": "crates",
"version_constraint": "2.0"
},
{
"name": "alloy-rlp",
"manifest": "Cargo.toml",
"ecosystem": "crates",
"version_constraint": "0.3"
},
{
"name": "arbitrary",
"manifest": "Cargo.toml",
"ecosystem": "crates",
"version_constraint": "1"
},
{
"name": "ark-ff-03",
"manifest": "Cargo.toml",
"ecosystem": "crates",
"version_constraint": "0.3.0"
},
{
"name": "ark-ff-04",
"manifest": "Cargo.toml",
"ecosystem": "crates",
"version_constraint": "0.4.0"
},
{
"name": "ark-ff-05",
"manifest": "Cargo.toml",
"ecosystem": "crates",
"version_constraint": "0.5.0"
},
{
"name": "ark-ff-06",
"manifest": "Cargo.toml",
"ecosystem": "crates",
"version_constraint": "0.6.0"
},
{
"name": "bigdecimal",
"manifest": "Cargo.toml",
"ecosystem": "crates",
"version_constraint": "0.4"
},
{
"name": "bincode-2",
"manifest": "Cargo.toml",
"ecosystem": "crates",
"version_constraint": "2"
},
{
"name": "bn-rs",
"manifest": "Cargo.toml",
"ecosystem": "crates",
"version_constraint": "0.2"
},
{
"name": "fastrlp-03",
"manifest": "Cargo.toml",
"ecosystem": "crates",
"version_constraint": "0.3"
},
{
"name": "fastrlp-04",
"manifest": "Cargo.toml",
"ecosystem": "crates",
"version_constraint": "0.4"
},
{
"name": "num-bigint",
"manifest": "Cargo.toml",
"ecosystem": "crates",
"version_constraint": "0.4"
},
{
"name": "num-integer",
"manifest": "Cargo.toml",
"ecosystem": "crates",
"version_constraint": "0.1"
},
{
"name": "num-traits",
"manifest": "Cargo.toml",
"ecosystem": "crates",
"version_constraint": "0.2.16"
},
{
"name": "parity-scale-codec",
"manifest": "Cargo.toml",
"ecosystem": "crates",
"version_constraint": "3"
},
{
"name": "primitive-types",
"manifest": "Cargo.toml",
"ecosystem": "crates",
"version_constraint": "0.12"
},
{
"name": "proptest",
"manifest": "Cargo.toml",
"ecosystem": "crates",
"version_constraint": "1"
},
{
"name": "pyo3",
"manifest": "Cargo.toml",
"ecosystem": "crates",
"version_constraint": "0.25"
},
{
"name": "quickcheck",
"manifest": "Cargo.toml",
"ecosystem": "crates",
"version_constraint": "1"
},
{
"name": "rand-08",
"manifest": "Cargo.toml",
"ecosystem": "crates",
"version_constraint": "0.8"
},
{
"name": "rand-09",
"manifest": "Cargo.toml",
"ecosystem": "crates",
"version_constraint": "0.9"
},
{
"name": "rkyv",
"manifest": "Cargo.toml",
"ecosystem": "crates",
"version_constraint": "0.8"
},
{
"name": "rlp",
"manifest": "Cargo.toml",
"ecosystem": "crates",
"version_constraint": "0.5"
},
{
"name": "serde_core",
"manifest": "Cargo.toml",
"ecosystem": "crates",
"version_constraint": "1.0.211"
},
{
"name": "valuable",
"manifest": "Cargo.toml",
"ecosystem": "crates",
"version_constraint": "0.1"
},
{
"name": "zeroize",
"manifest": "Cargo.toml",
"ecosystem": "crates",
"version_constraint": "1.6"
},
{
"name": "bytemuck",
"manifest": "Cargo.toml",
"ecosystem": "crates",
"version_constraint": "1.13.1"
},
{
"name": "ethereum_ssz",
"manifest": "Cargo.toml",
"ecosystem": "crates",
"version_constraint": "0.5.3"
},
{
"name": "der",
"manifest": "Cargo.toml",
"ecosystem": "crates",
"version_constraint": "0.7"
},
{
"name": "subtle",
"manifest": "Cargo.toml",
"ecosystem": "crates",
"version_constraint": "2.6.1"
},
{
"name": "bytes",
"manifest": "Cargo.toml",
"ecosystem": "crates",
"version_constraint": "1.4"
},
{
"name": "postgres-types",
"manifest": "Cargo.toml",
"ecosystem": "crates",
"version_constraint": "0.2"
},
{
"name": "diesel",
"manifest": "Cargo.toml",
"ecosystem": "crates",
"version_constraint": "2.2"
},
{
"name": "sqlx-core",
"manifest": "Cargo.toml",
"ecosystem": "crates",
"version_constraint": "0.8.2"
},
{
"name": "borsh",
"manifest": "Cargo.toml",
"ecosystem": "crates",
"version_constraint": "1.5"
}
],
"all_dependencies": {
"error": null,
"source": "github-sbom",
"packages": [
{
"name": "alloy-rlp",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "arbitrary",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "bigdecimal",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "bn-rs",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "borsh",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "bytemuck",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "bytes",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "der",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "diesel",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "ethereum_ssz",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "num-bigint",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "num-integer",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "num-traits",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "parity-scale-codec",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "postgres-types",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "primitive-types",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "proptest",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "pyo3",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "quickcheck",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "rkyv",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "rlp",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "ruint-macro",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "serde_core",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "sqlx-core",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "subtle",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "thiserror",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "valuable",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "zeroize",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "approx",
"direct": false,
"version": null,
"ecosystem": "crates"
},
{
"name": "ark-bn254",
"direct": false,
"version": null,
"ecosystem": "crates"
},
{
"name": "ark-ff",
"direct": false,
"version": null,
"ecosystem": "crates"
},
{
"name": "arrayvec",
"direct": false,
"version": null,
"ecosystem": "crates"
},
{
"name": "bincode",
"direct": false,
"version": null,
"ecosystem": "crates"
},
{
"name": "codspeed-criterion-compat",
"direct": false,
"version": null,
"ecosystem": "crates"
},
{
"name": "fastrlp",
"direct": false,
"version": null,
"ecosystem": "crates"
},
{
"name": "hex",
"direct": false,
"version": null,
"ecosystem": "crates"
},
{
"name": "hex-literal",
"direct": false,
"version": null,
"ecosystem": "crates"
},
{
"name": "postgres",
"direct": false,
"version": null,
"ecosystem": "crates"
},
{
"name": "rand",
"direct": false,
"version": null,
"ecosystem": "crates"
},
{
"name": "serde_json",
"direct": false,
"version": null,
"ecosystem": "crates"
}
],
"collected": true,
"truncated": false,
"total_count": 40,
"direct_count": 28,
"indirect_count": 12
}
},
"maintainership": {
"issues": {
"open_prs": 2,
"merged_prs": 261,
"open_issues": 67,
"closed_ratio": 0.71,
"closed_issues": 164,
"closed_unmerged_prs": 123
},
"bus_factor": 2,
"bot_contributors": 1,
"top_contributors": [
{
"type": "User",
"login": "recmo",
"commits": 436,
"avatar_url": "https://avatars.githubusercontent.com/u/4532328?v=4"
},
{
"type": "User",
"login": "prestwich",
"commits": 323,
"avatar_url": "https://avatars.githubusercontent.com/u/10149425?v=4"
},
{
"type": "User",
"login": "DaniPopes",
"commits": 219,
"avatar_url": "https://avatars.githubusercontent.com/u/57450786?v=4"
},
{
"type": "User",
"login": "shekhirin",
"commits": 38,
"avatar_url": "https://avatars.githubusercontent.com/u/5773434?v=4"
},
{
"type": "User",
"login": "Rjected",
"commits": 20,
"avatar_url": "https://avatars.githubusercontent.com/u/6798349?v=4"
},
{
"type": "User",
"login": "gakonst",
"commits": 14,
"avatar_url": "https://avatars.githubusercontent.com/u/17802178?v=4"
},
{
"type": "User",
"login": "Evalir",
"commits": 13,
"avatar_url": "https://avatars.githubusercontent.com/u/26014927?v=4"
},
{
"type": "User",
"login": "Pzixel",
"commits": 12,
"avatar_url": "https://avatars.githubusercontent.com/u/11201122?v=4"
},
{
"type": "User",
"login": "0xKitsune",
"commits": 10,
"avatar_url": "https://avatars.githubusercontent.com/u/77890308?v=4"
},
{
"type": "User",
"login": "tonyke-bot",
"commits": 10,
"avatar_url": "https://avatars.githubusercontent.com/u/14999583?v=4"
}
],
"contributors_sampled": 35,
"top_contributor_share": 0.379
},
"quality_signals": {
"has_ci": true,
"has_tests": true,
"ci_workflows": [
"bench.yml",
"ci.yml",
"issue_tracker.yml"
],
"has_docs_dir": false,
"linter_configs": [],
"has_editorconfig": true,
"has_linter_config": false,
"has_precommit_config": false
},
"security_signals": {
"lockfiles": [],
"scorecard": {
"checks": [
{
"name": "Binary-Artifacts",
"score": 10,
"reason": "no binaries found in the repo",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#binary-artifacts"
},
{
"name": "Branch-Protection",
"score": null,
"reason": "internal error: error during branchesHandler.setup: internal error: some github tokens can't read classic branch protection rules: https://github.com/ossf/scorecard-action/blob/main/docs/authentication/fine-grained-auth-token.md",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#branch-protection"
},
{
"name": "CI-Tests",
"score": 9,
"reason": "24 out of 25 merged PRs checked by a CI test -- score normalized to 9",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#ci-tests"
},
{
"name": "CII-Best-Practices",
"score": 0,
"reason": "no effort to earn an OpenSSF best practices badge detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#cii-best-practices"
},
{
"name": "Code-Review",
"score": 8,
"reason": "Found 20/24 approved changesets -- score normalized to 8",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#code-review"
},
{
"name": "Contributors",
"score": 10,
"reason": "project has 11 contributing companies or organizations",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#contributors"
},
{
"name": "Dangerous-Workflow",
"score": 10,
"reason": "no dangerous workflow patterns detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#dangerous-workflow"
},
{
"name": "Dependency-Update-Tool",
"score": 10,
"reason": "update tool detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#dependency-update-tool"
},
{
"name": "Fuzzing",
"score": 0,
"reason": "project is not fuzzed",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#fuzzing"
},
{
"name": "License",
"score": 10,
"reason": "license file detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#license"
},
{
"name": "Maintained",
"score": 10,
"reason": "30 commit(s) and 3 issue activity found in the last 90 days -- score normalized to 10",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#maintained"
},
{
"name": "Packaging",
"score": null,
"reason": "packaging workflow not detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#packaging"
},
{
"name": "Pinned-Dependencies",
"score": 0,
"reason": "dependency not pinned by hash detected -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#pinned-dependencies"
},
{
"name": "SAST",
"score": 0,
"reason": "SAST tool is not run on all commits -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#sast"
},
{
"name": "Security-Policy",
"score": 9,
"reason": "security policy file detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#security-policy"
},
{
"name": "Signed-Releases",
"score": null,
"reason": "no releases found",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#signed-releases"
},
{
"name": "Token-Permissions",
"score": 0,
"reason": "detected GitHub workflow tokens with excessive permissions",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#token-permissions"
},
{
"name": "Vulnerabilities",
"score": 10,
"reason": "0 existing vulnerabilities detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#vulnerabilities"
}
],
"commit": "0fccc1071272affc25d50887c24a9f9a97b746f4",
"ran_at": "2026-07-31T23:08:45Z",
"aggregate_score": 6.8,
"scorecard_version": "v5.5.0"
},
"has_codeql_workflow": false,
"has_security_policy": false,
"has_dependabot_config": true
},
"contribution_flow": {
"collected": true,
"ci_last_run_at": "2026-07-30T15:57:45Z",
"oldest_open_prs": [
{
"number": 615,
"created_at": "2026-07-10T03:05:33Z",
"last_comment_at": "2026-07-10T03:08:49Z",
"last_comment_author": "codspeed-hq"
},
{
"number": 616,
"created_at": "2026-07-10T10:57:55Z",
"last_comment_at": "2026-07-10T13:08:01Z",
"last_comment_author": "codspeed-hq"
}
],
"last_merged_pr_at": "2026-07-30T15:57:22Z",
"ci_last_conclusion": "SUCCESS",
"oldest_open_issues": [
{
"number": 39,
"created_at": "2022-05-18T23:00:59Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 46,
"created_at": "2022-05-19T20:47:50Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 67,
"created_at": "2022-05-28T18:51:53Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 68,
"created_at": "2022-05-28T18:51:54Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 84,
"created_at": "2022-05-28T20:51:11Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 85,
"created_at": "2022-05-28T20:51:12Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 89,
"created_at": "2022-05-28T20:51:16Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 91,
"created_at": "2022-05-28T20:51:18Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 92,
"created_at": "2022-05-28T20:51:20Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 94,
"created_at": "2022-05-28T20:51:21Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 95,
"created_at": "2022-05-28T20:51:23Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 96,
"created_at": "2022-05-28T20:51:24Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 98,
"created_at": "2022-05-31T20:14:01Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 99,
"created_at": "2022-05-31T20:14:02Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 100,
"created_at": "2022-05-31T20:14:03Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 101,
"created_at": "2022-05-31T20:14:04Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 105,
"created_at": "2022-06-03T23:55:26Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 106,
"created_at": "2022-06-03T23:55:27Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 108,
"created_at": "2022-06-03T23:55:30Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 118,
"created_at": "2022-06-06T03:47:35Z",
"last_comment_at": null,
"last_comment_author": null
}
]
}
},
"config": {
"disabled_metrics": [],
"disabled_categories": [],
"disabled_components": {}
},
"source": {
"url": "https://github.com/alloy-rs/ruint",
"host": "github.com",
"name": "ruint",
"owner": "alloy-rs"
},
"metrics": {
"overall": {
"key": "overall",
"band": "excellent",
"name": "Overall health",
"note": "The weighted overall 72 is calibrated to 86 on the published index scale (record calibration 2026-08-02).",
"notes": [
{
"code": "overall_calibration",
"params": {
"raw": 72,
"calibrated": 86,
"calibration": "2026-08-02"
}
}
],
"value": 86,
"inputs": {
"security": 68,
"vitality": 85,
"community": 68,
"governance": 74,
"calibration": "2026-08-02",
"engineering": 59,
"ai_readiness": 78,
"weighted_overall_raw": 72
},
"components": []
},
"categories": [
{
"key": "vitality",
"band": "excellent",
"name": "Vitality",
"value": 85,
"weight": 0.21,
"metrics": [
{
"key": "development_activity",
"band": "excellent",
"name": "Development activity",
"note": null,
"notes": [],
"value": 81,
"inputs": {
"commits_last_year": 167,
"human_commit_share": 0.99,
"days_since_last_push": 1,
"active_weeks_last_year": 25
},
"components": [
{
"key": "push_recency",
"name": "Push recency",
"detail": "last push 1 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "push_recency",
"params": {
"days": 1
}
}
],
"max_points": 36
},
{
"key": "commit_cadence",
"name": "Commit cadence",
"detail": "25/52 weeks with commits",
"points": 17.3,
"status": "partial",
"details": [
{
"code": "commit_cadence_weeks",
"params": {
"weeks": 25
}
}
],
"max_points": 36
},
{
"key": "commit_volume",
"name": "Commit volume",
"detail": "167 commits in the last year",
"points": 18,
"status": "met",
"details": [
{
"code": "commits_last_year",
"params": {
"count": 167
}
}
],
"max_points": 18
},
{
"key": "openssf_scorecard_maintained",
"name": "OpenSSF Scorecard: Maintained",
"detail": "30 commit(s) and 3 issue activity found in the last 90 days -- score normalized to 10",
"points": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
},
{
"key": "release_discipline",
"band": "excellent",
"name": "Release discipline",
"note": "Excluded from scoring (no data or not applicable): OpenSSF Scorecard: Signed-Releases. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"openssf_scorecard_signed_releases"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 92,
"inputs": {
"releases_count": 20,
"latest_release_tag": "v1.20.0",
"releases_from_tags": false,
"days_since_latest_release": 1,
"mean_days_between_releases": 58.5
},
"components": [
{
"key": "ships_releases",
"name": "Ships releases",
"detail": "20 releases published",
"points": 27,
"status": "met",
"details": [
{
"code": "releases_published",
"params": {
"count": 20
}
}
],
"max_points": 27
},
{
"key": "release_recency",
"name": "Release recency",
"detail": "latest release 1 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "release_recency",
"params": {
"days": 1
}
}
],
"max_points": 36
},
{
"key": "release_cadence",
"name": "Release cadence",
"detail": "a release every ~58.5 days",
"points": 19.8,
"status": "partial",
"details": [
{
"code": "release_cadence",
"params": {
"gap": 58.5
}
}
],
"max_points": 27
},
{
"key": "openssf_scorecard_signed_releases",
"name": "OpenSSF Scorecard: Signed-Releases",
"detail": "no releases found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 10
}
]
},
{
"key": "abandonment",
"band": "exceptional",
"name": "Abandonment",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"cap": null,
"state": "maintained",
"guards": [],
"signals": [],
"red_flag": false,
"multiplier_pct": 100,
"declared_reason": null,
"unverified_reason": null,
"unanswered_open_prs": null,
"unanswered_open_issues": null,
"days_since_last_merged_pr": null,
"days_since_last_human_commit": 3,
"days_since_last_human_commit_is_floor": false
},
"components": [
{
"key": "project_is_still_maintained",
"name": "Project is still maintained",
"detail": "last human commit 3 days ago",
"points": 100,
"status": "met",
"details": [
{
"code": "abandonment_maintained",
"params": {
"days": 3
}
}
],
"max_points": 100
}
]
}
],
"description": "Is the project alive — is code being written and are releases shipping?"
},
{
"key": "community",
"band": "good",
"name": "Community & Adoption",
"value": 68,
"weight": 0.17,
"metrics": [
{
"key": "popularity",
"band": "moderate",
"name": "Popularity & adoption",
"note": null,
"notes": [],
"value": 57,
"inputs": {
"forks": 69,
"stars": 224,
"watchers": 6,
"growth_state": "unverified",
"growth_factor_pct": 100,
"growth_unverified_reason": "no_history"
},
"components": [
{
"key": "stars",
"name": "Stars",
"detail": "224 stars",
"points": 38.1,
"status": "partial",
"details": [
{
"code": "stars",
"params": {
"count": 224
}
}
],
"max_points": 60
},
{
"key": "forks",
"name": "Forks",
"detail": "69 forks",
"points": 15.3,
"status": "partial",
"details": [
{
"code": "forks",
"params": {
"count": 69
}
}
],
"max_points": 25
},
{
"key": "watchers",
"name": "Watchers",
"detail": "6 watchers",
"points": 3.9,
"status": "partial",
"details": [
{
"code": "watchers",
"params": {
"count": 6
}
}
],
"max_points": 15
}
]
},
{
"key": "community_health",
"band": "moderate",
"name": "Community health",
"note": null,
"notes": [],
"value": 57,
"inputs": {
"has_readme": true,
"has_license": true,
"readme_badges": null,
"has_contributing": false,
"has_issue_template": false,
"has_code_of_conduct": false,
"readme_badge_services": [],
"has_pull_request_template": true
},
"components": [
{
"key": "readme",
"name": "README",
"detail": null,
"points": 22.5,
"status": "met",
"details": [],
"max_points": 22.5
},
{
"key": "license",
"name": "License",
"detail": "recognized license (MIT)",
"points": 22.5,
"status": "met",
"details": [
{
"code": "license_standard",
"params": {}
},
{
"code": "license_spdx",
"params": {
"spdx": "MIT"
}
}
],
"max_points": 22.5
},
{
"key": "contributing_guide",
"name": "CONTRIBUTING guide",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 18
},
{
"key": "code_of_conduct",
"name": "Code of conduct",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 13.5
},
{
"key": "issue_template",
"name": "Issue template",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.2
},
{
"key": "pr_template",
"name": "PR template",
"detail": null,
"points": 6.3,
"status": "met",
"details": [],
"max_points": 6.3
}
]
},
{
"key": "ecosystem_adoption",
"band": "exceptional",
"name": "Ecosystem adoption (downloads)",
"note": "Excluded from scoring (no data or not applicable): Registry dependents. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"registry_dependents"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 100,
"inputs": {
"packages": [
"ruint"
],
"dependents": null,
"ecosystems": "crates",
"total_downloads": 24372986,
"monthly_downloads": 2213030
},
"components": [
{
"key": "monthly_downloads",
"name": "Monthly downloads",
"detail": "2,213,030 downloads/month across crates",
"points": 80,
"status": "met",
"details": [
{
"code": "downloads_monthly",
"params": {
"count": 2213030,
"ecosystems": "crates"
}
}
],
"max_points": 80
},
{
"key": "registry_dependents",
"name": "Registry dependents",
"detail": "not reported by this ecosystem",
"points": 0,
"status": "excluded",
"details": [
{
"code": "not_reported_by_this_ecosystem",
"params": {}
}
],
"max_points": 20
}
]
}
],
"description": "Does the project have users, downloads, attention, and a welcoming setup for contributors?"
},
{
"key": "governance",
"band": "good",
"name": "Sustainability & Governance",
"value": 74,
"weight": 0.23,
"metrics": [
{
"key": "maintainer_resilience",
"band": "moderate",
"name": "Maintainer resilience (bus factor)",
"note": null,
"notes": [],
"value": 63,
"inputs": {
"bus_factor": 2,
"contributors_sampled": 35,
"top_contributor_share": 0.379
},
"components": [
{
"key": "bus_factor",
"name": "Bus factor",
"detail": "2 contributor(s) cover half of all commits",
"points": 25.2,
"status": "partial",
"details": [
{
"code": "bus_factor",
"params": {
"count": 2
}
}
],
"max_points": 54
},
{
"key": "commit_distribution",
"name": "Commit distribution",
"detail": "top contributor authored 38% of commits",
"points": 14,
"status": "partial",
"details": [
{
"code": "top_contributor_share",
"params": {
"share": 38
}
}
],
"max_points": 22.5
},
{
"key": "contributor_breadth",
"name": "Contributor breadth",
"detail": "35 contributors",
"points": 13.5,
"status": "met",
"details": [
{
"code": "contributors_sampled",
"params": {
"count": 35
}
}
],
"max_points": 13.5
},
{
"key": "openssf_scorecard_contributors",
"name": "OpenSSF Scorecard: Contributors",
"detail": "project has 11 contributing companies or organizations",
"points": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
},
{
"key": "responsiveness",
"band": "good",
"name": "Issue & PR responsiveness",
"note": "Excluded from scoring (no data or not applicable): Newcomer PR acceptance. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"newcomer_pr_acceptance"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 71,
"inputs": {
"merged_prs": 261,
"open_issues": 67,
"closed_issues": 164,
"prs_merged_7d": null,
"prs_decided_7d": null,
"prs_merged_30d": null,
"prs_decided_30d": null,
"issue_closed_ratio": 0.71,
"closed_unmerged_prs": 123,
"first_time_authors_30d": null,
"first_time_prs_merged_30d": null,
"first_time_prs_decided_30d": null
},
"components": [
{
"key": "issue_resolution",
"name": "Issue resolution",
"detail": "71% of issues closed",
"points": 29.8,
"status": "partial",
"details": [
{
"code": "issues_closed_share",
"params": {
"share": 71
}
}
],
"max_points": 42
},
{
"key": "pr_acceptance",
"name": "PR acceptance",
"detail": "261/384 decided PRs merged",
"points": 20.4,
"status": "partial",
"details": [
{
"code": "decided_prs_merged",
"params": {
"merged": 261,
"decided": 384
}
}
],
"max_points": 30
},
{
"key": "newcomer_pr_acceptance",
"name": "Newcomer PR acceptance",
"detail": "no first-time contributor's PR decided in 30d",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_newcomer_prs",
"params": {
"days": 30
}
}
],
"max_points": 13
},
{
"key": "openssf_scorecard_code_review",
"name": "OpenSSF Scorecard: Code-Review",
"detail": "Found 20/24 approved changesets -- score normalized to 8",
"points": 12,
"status": "partial",
"details": [],
"max_points": 15
}
]
},
{
"key": "stewardship",
"band": "good",
"name": "Ownership & stewardship",
"note": null,
"notes": [],
"value": 68,
"inputs": {
"followers": 875,
"owner_type": "Organization",
"is_verified": null,
"owner_login": "alloy-rs",
"public_repos": 21,
"account_age_days": 1233
},
"components": [
{
"key": "ownership_backing",
"name": "Ownership backing",
"detail": "organization-owned",
"points": 30,
"status": "met",
"details": [
{
"code": "owner_organization",
"params": {}
}
],
"max_points": 30
},
{
"key": "verified_domain",
"name": "Verified domain",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 20
},
{
"key": "owner_reach",
"name": "Owner reach",
"detail": "875 followers of alloy-rs",
"points": 21.2,
"status": "partial",
"details": [
{
"code": "owner_followers",
"params": {
"count": 875,
"login": "alloy-rs"
}
}
],
"max_points": 25
},
{
"key": "track_record",
"name": "Track record",
"detail": "21 public repos, account ~3 yr old",
"points": 16.5,
"status": "partial",
"details": [
{
"code": "public_repos",
"params": {
"count": 21
}
},
{
"code": "account_age_years",
"params": {
"years": 3
}
}
],
"max_points": 25
}
]
},
{
"key": "package_maintenance",
"band": "exceptional",
"name": "Package maintenance",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"packages": [
"ruint"
],
"ecosystems": "crates",
"any_deprecated": false,
"min_days_since_publish": 1
},
"components": [
{
"key": "published_resolvable",
"name": "Published & resolvable",
"detail": "1 package(s) on crates",
"points": 25,
"status": "met",
"details": [
{
"code": "packages_published",
"params": {
"count": 1,
"ecosystems": "crates"
}
}
],
"max_points": 25
},
{
"key": "publish_recency",
"name": "Publish recency",
"detail": "latest publish 1 days ago",
"points": 35,
"status": "met",
"details": [
{
"code": "publish_recency",
"params": {
"days": 1
}
}
],
"max_points": 35
},
{
"key": "version_history",
"name": "Version history",
"detail": "35 published versions",
"points": 20,
"status": "met",
"details": [
{
"code": "published_versions",
"params": {
"count": 35
}
}
],
"max_points": 20
},
{
"key": "not_deprecated",
"name": "Not deprecated",
"detail": "active, not deprecated or yanked",
"points": 20,
"status": "met",
"details": [
{
"code": "package_not_deprecated",
"params": {}
}
],
"max_points": 20
}
]
}
],
"description": "Will the project survive its people — bus factor, responsiveness, who backs it, and package upkeep?"
},
{
"key": "engineering",
"band": "moderate",
"name": "Engineering Quality",
"value": 59,
"weight": 0.19,
"metrics": [
{
"key": "engineering_practices",
"band": "good",
"name": "Engineering practices",
"note": null,
"notes": [],
"value": 72,
"inputs": {
"has_ci": true,
"has_tests": true,
"has_editorconfig": true,
"has_linter_config": false,
"has_precommit_config": false
},
"components": [
{
"key": "ci_workflows",
"name": "CI workflows",
"detail": "3 workflow(s)",
"points": 24,
"status": "met",
"details": [
{
"code": "ci_workflows",
"params": {
"count": 3
}
}
],
"max_points": 24
},
{
"key": "tests_present",
"name": "Tests present",
"detail": null,
"points": 24,
"status": "met",
"details": [],
"max_points": 24
},
{
"key": "linter_config",
"name": "Linter config",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 16
},
{
"key": "pre_commit_hooks",
"name": "Pre-commit hooks",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 9.6
},
{
"key": "editorconfig",
"name": ".editorconfig",
"detail": null,
"points": 6.4,
"status": "met",
"details": [],
"max_points": 6.4
},
{
"key": "openssf_scorecard_ci_tests",
"name": "OpenSSF Scorecard: CI-Tests",
"detail": "24 out of 25 merged PRs checked by a CI test -- score normalized to 9",
"points": 18,
"status": "partial",
"details": [],
"max_points": 20
}
]
},
{
"key": "documentation",
"band": "weak",
"name": "Documentation",
"note": null,
"notes": [],
"value": 40,
"inputs": {
"topics": [],
"has_wiki": false,
"homepage": null,
"has_readme": true,
"has_docs_dir": false,
"has_description": true
},
"components": [
{
"key": "readme",
"name": "README",
"detail": null,
"points": 30,
"status": "met",
"details": [],
"max_points": 30
},
{
"key": "documentation_directory",
"name": "Documentation directory",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 25
},
{
"key": "documentation_homepage_site",
"name": "Documentation / homepage site",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 15
},
{
"key": "repository_description",
"name": "Repository description",
"detail": null,
"points": 10,
"status": "met",
"details": [],
"max_points": 10
},
{
"key": "topics",
"name": "Topics",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
},
{
"key": "wiki",
"name": "Wiki",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
}
]
}
],
"description": "Are baseline engineering and documentation practices in place?"
},
{
"key": "security",
"band": "good",
"name": "Security",
"value": 68,
"weight": 0.16,
"metrics": [
{
"key": "security_posture",
"band": "good",
"name": "Security posture",
"note": "Excluded from scoring (no data or not applicable): Branch-Protection, Packaging, Signed-Releases. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"branch_protection",
"packaging",
"signed_releases"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 68,
"inputs": {
"source": "openssf_scorecard",
"checks_evaluated": 15,
"scorecard_version": "v5.5.0",
"checks_inconclusive": 3,
"scorecard_aggregate": 6.8
},
"components": [
{
"key": "binary_artifacts",
"name": "Binary-Artifacts",
"detail": "no binaries found in the repo",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
},
{
"key": "branch_protection",
"name": "Branch-Protection",
"detail": "internal error: error during branchesHandler.setup: internal error: some github tokens can't read classic branch protection rules: https://github.com/ossf/scorecard-action/blob/main/docs/authentication/fine-grained-auth-token.md",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 7.5
},
{
"key": "ci_tests",
"name": "CI-Tests",
"detail": "24 out of 25 merged PRs checked by a CI test -- score normalized to 9",
"points": 2.2,
"status": "partial",
"details": [],
"max_points": 2.5
},
{
"key": "cii_best_practices",
"name": "CII-Best-Practices",
"detail": "no effort to earn an OpenSSF best practices badge detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 2.5
},
{
"key": "code_review",
"name": "Code-Review",
"detail": "Found 20/24 approved changesets -- score normalized to 8",
"points": 6,
"status": "partial",
"details": [],
"max_points": 7.5
},
{
"key": "contributors",
"name": "Contributors",
"detail": "project has 11 contributing companies or organizations",
"points": 2.5,
"status": "met",
"details": [],
"max_points": 2.5
},
{
"key": "dangerous_workflow",
"name": "Dangerous-Workflow",
"detail": "no dangerous workflow patterns detected",
"points": 10,
"status": "met",
"details": [],
"max_points": 10
},
{
"key": "dependency_update_tool",
"name": "Dependency-Update-Tool",
"detail": "update tool detected",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
},
{
"key": "fuzzing",
"name": "Fuzzing",
"detail": "project is not fuzzed",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "license",
"name": "License",
"detail": "license file detected",
"points": 2.5,
"status": "met",
"details": [],
"max_points": 2.5
},
{
"key": "maintained",
"name": "Maintained",
"detail": "30 commit(s) and 3 issue activity found in the last 90 days -- score normalized to 10",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
},
{
"key": "packaging",
"name": "Packaging",
"detail": "packaging workflow not detected",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 5
},
{
"key": "pinned_dependencies",
"name": "Pinned-Dependencies",
"detail": "dependency not pinned by hash detected -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "sast",
"name": "SAST",
"detail": "SAST tool is not run on all commits -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "security_policy",
"name": "Security-Policy",
"detail": "security policy file detected",
"points": 4.5,
"status": "partial",
"details": [],
"max_points": 5
},
{
"key": "signed_releases",
"name": "Signed-Releases",
"detail": "no releases found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 7.5
},
{
"key": "token_permissions",
"name": "Token-Permissions",
"detail": "detected GitHub workflow tokens with excessive permissions",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "vulnerabilities",
"name": "Vulnerabilities",
"detail": "0 existing vulnerabilities detected",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
}
]
},
{
"key": "high_risk_jurisdiction_exposure",
"band": "exceptional",
"name": "High-Risk Jurisdiction Exposure",
"note": "Only high-confidence self-published location evidence affects this multiplier. Ambiguous matches are review-only; country evidence is not proof of nationality, citizenship, legal registration, malicious intent, or sanctions status.",
"notes": [
{
"code": "jurisdiction_evidence_limits",
"params": {}
}
],
"value": 100,
"inputs": {
"meaning": "self-published location evidence; not nationality or citizenship",
"red_flag": false,
"exposures": [],
"policy_countries": [
"Russia",
"Iran",
"North Korea"
],
"commit_weight_rule": {
"min_commits": 50,
"min_commit_share": 0.1
},
"review_only_matches": 0,
"below_threshold_exposures": [],
"assessed_self_published_locations": 4
},
"components": [
{
"key": "policy_exposure_multiplier",
"name": "Policy exposure multiplier",
"detail": "no confirmed policy-scope location match",
"points": 100,
"status": "met",
"details": [
{
"code": "jurisdiction_no_match",
"params": {}
}
],
"max_points": 100
}
]
}
],
"description": "Are visible security and supply-chain practices strong, with no malicious dependency and no unresolved high-risk jurisdiction exposure?"
},
{
"key": "ai_readiness",
"band": "good",
"name": "AI Readiness",
"value": 78,
"weight": 0.04,
"metrics": [
{
"key": "ai_agent_context",
"band": "excellent",
"name": "Agent context & guidance",
"note": null,
"notes": [],
"value": 85,
"inputs": {
"has_llms_txt": false,
"legible_history_share": 0.879,
"agent_instruction_files": [
"AGENTS.md"
],
"agent_instruction_max_bytes": 1671
},
"components": [
{
"key": "agent_instructions",
"name": "Agent instructions",
"detail": "AGENTS.md",
"points": 45,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "AGENTS.md"
}
}
],
"max_points": 45
},
{
"key": "machine_readable_docs_llms_txt",
"name": "Machine-readable docs (llms.txt)",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 15
},
{
"key": "legible_commit_history",
"name": "Legible commit history",
"detail": "87 of 99 human commits state their intent (structured subject or explanatory body)",
"points": 40,
"status": "met",
"details": [
{
"code": "legible_history",
"params": {
"legible": 87,
"sampled": 99
}
}
],
"max_points": 40
}
]
},
{
"key": "ai_verify_loop",
"band": "moderate",
"name": "Verify loop (build / test / typecheck)",
"note": null,
"notes": [],
"value": 64,
"inputs": {
"has_nix": false,
"has_tests": true,
"lockfiles": [],
"has_dockerfile": false,
"typed_language": true,
"bootstrap_files": [],
"has_devcontainer": false,
"has_linter_config": false,
"typecheck_configs": [],
"agent_commit_share": 0.13,
"toolchain_manifests": [
"Cargo.toml",
"ruint-bench/Cargo.toml",
"ruint-macro/Cargo.toml"
],
"dependency_bot_commit_share": 0.01
},
"components": [
{
"key": "one_command_bootstrap",
"name": "One-command bootstrap",
"detail": "Cargo.toml, ruint-bench/Cargo.toml, ruint-macro/Cargo.toml (toolchain convention, no task runner)",
"points": 12.6,
"status": "partial",
"details": [
{
"code": "toolchain_convention",
"params": {
"files": "Cargo.toml, ruint-bench/Cargo.toml, ruint-macro/Cargo.toml"
}
}
],
"max_points": 18
},
{
"key": "automated_tests",
"name": "Automated tests",
"detail": null,
"points": 22,
"status": "met",
"details": [],
"max_points": 22
},
{
"key": "lint_format_config",
"name": "Lint / format config",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 11
},
{
"key": "static_type_checking",
"name": "Static type checking",
"detail": "Rust (statically typed)",
"points": 11,
"status": "met",
"details": [
{
"code": "statically_typed_language",
"params": {
"language": "Rust"
}
}
],
"max_points": 11
},
{
"key": "reproducible_environment",
"name": "Reproducible environment",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
},
{
"key": "demonstrated_agent_practice",
"name": "Demonstrated agent practice",
"detail": "13 of the last 100 commits agent-authored or agent-credited",
"points": 10,
"status": "met",
"details": [
{
"code": "agent_authored_commits",
"params": {
"count": 13,
"sampled": 100
}
}
],
"max_points": 10
},
{
"key": "automated_maintenance",
"name": "Automated maintenance",
"detail": "1 of the last 100 commits are automated dependency updates",
"points": 8,
"status": "met",
"details": [
{
"code": "dependency_bot_commits",
"params": {
"count": 1,
"sampled": 100
}
}
],
"max_points": 8
},
{
"key": "openssf_scorecard_pinned_dependencies",
"name": "OpenSSF Scorecard: Pinned-Dependencies",
"detail": "dependency not pinned by hash detected -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
}
]
},
{
"key": "ai_code_legibility",
"band": "exceptional",
"name": "Code legibility for models",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"primary_language": "Rust",
"largest_source_bytes": 51714,
"source_files_sampled": 94,
"oversized_source_files": 0
},
"components": [
{
"key": "type_checkable_code",
"name": "Type-checkable code",
"detail": "Rust (statically typed)",
"points": 45,
"status": "met",
"details": [
{
"code": "statically_typed_language",
"params": {
"language": "Rust"
}
}
],
"max_points": 45
},
{
"key": "manageable_file_sizes",
"name": "Manageable file sizes",
"detail": "0/94 source files over 60KB",
"points": 55,
"status": "met",
"details": [
{
"code": "oversized_source_files",
"params": {
"kb": 60,
"sampled": 94,
"oversized": 0
}
}
],
"max_points": 55
}
]
}
],
"description": "How well is the repo equipped to be developed and maintained with AI coding agents? Carries a deliberately small weight: agent tooling is a real maintenance signal, but its absence must never gate the top of the scale (calibration saturates at raw 91, so 100/100 remains reachable with AI Readiness at zero)."
}
],
"classification": {
"labels": [
"library"
],
"scores": {
"library": 6
},
"primary": "library",
"evidence": [
{
"tier": "distribution",
"label": "library",
"source": "registry:crates",
"weight": 6
}
],
"artifacts": [],
"confidence": "medium",
"host_extension": false,
"runs_as_process": false,
"consumed_by_code": true
},
"metrics_version": "2.3.1"
},
"warnings": [
"Star history unavailable: GitHub GraphQL error: Resource not accessible by personal access token",
"Could not fetch crates package 'ruint-bench' from its registry",
"crates package 'ruint-macro' points at a different repository (https://github.com/recmo/uint); excluded from ecosystem scoring",
"No resolved dependencies carried a version and a supported ecosystem"
],
"report_type": "repository",
"generated_at": "2026-07-31T23:09:12.141153Z",
"schema_version": "0.27.0",
"badge_url": "https://raw.githubusercontent.com/inspect-software/badges/main/v1/a/alloy-rs/ruint.svg",
"full_name": "alloy-rs/ruint",
"license_state": "standard",
"license_spdx": "MIT"
}