Informe JSON sin procesar legible por máquina
{
"data": {
"repo": {
"topics": [
"mmio",
"no-std",
"rust",
"rust-crate"
],
"is_fork": false,
"size_kb": 171,
"has_wiki": false,
"homepage": null,
"languages": {
"Rust": 85150
},
"pushed_at": "2026-07-23T09:29:31Z",
"created_at": "2025-02-14T14:43:03Z",
"owner_type": "Organization",
"updated_at": "2026-07-23T09:29:26Z",
"description": "A Rust library crate with types for safe MMIO device access",
"is_archived": false,
"is_disabled": false,
"license_spdx": null,
"default_branch": "main",
"license_spdx_raw": "NOASSERTION",
"primary_language": "Rust",
"significant_languages": [
"Rust"
]
},
"owner": {
"blog": "https://opensource.google/",
"name": "Google",
"type": "Organization",
"login": "google",
"company": null,
"location": "United States of America",
"followers": 75849,
"avatar_url": "https://avatars.githubusercontent.com/u/1342004?v=4",
"created_at": "2012-01-18T01:30:18Z",
"is_verified": null,
"public_repos": 2887,
"account_age_days": 5300
},
"license": {
"state": "custom",
"spdx_id": null,
"raw_spdx": "NOASSERTION",
"file_present": true,
"scorecard_found": true,
"profile_has_license": true
},
"activity": {
"releases": [
{
"tag": "0.3.1",
"kind": "patch",
"published_at": "2026-07-23T09:30:28Z"
},
{
"tag": "0.3.0",
"kind": "minor",
"published_at": "2026-03-03T18:08:32Z"
},
{
"tag": "0.2.7",
"kind": "patch",
"published_at": "2026-01-06T16:19:39Z"
},
{
"tag": "0.2.6",
"kind": "patch",
"published_at": "2025-12-01T17:06:24Z"
},
{
"tag": "0.2.5",
"kind": "patch",
"published_at": "2025-04-10T13:16:14Z"
},
{
"tag": "0.2.4",
"kind": "patch",
"published_at": "2025-04-08T10:49:07Z"
},
{
"tag": "0.2.3",
"kind": "patch",
"published_at": "2025-04-04T15:56:18Z"
},
{
"tag": "0.2.2",
"kind": "patch",
"published_at": "2025-03-25T12:36:35Z"
},
{
"tag": "0.2.1",
"kind": "patch",
"published_at": "2025-03-17T18:15:10Z"
},
{
"tag": "0.2.0",
"kind": "minor",
"published_at": "2025-03-17T18:14:46Z"
},
{
"tag": "0.1.0",
"kind": "minor",
"published_at": "2025-03-17T18:14:20Z"
}
],
"recent_commits": [
{
"oid": "9bef6d8c90fd60fc619018e21b43e3c584074a5b",
"body": null,
"is_bot": false,
"headline": "Prepare for 0.3.1 release.",
"author_name": "Andrew Walbran",
"author_login": "qwandor",
"committed_at": "2026-07-22T17:40:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2257c4d0ca34e6b1d5ad44c5b8ffaa90c1f1c817",
"body": null,
"is_bot": false,
"headline": "Document breaking changes from refactoring.",
"author_name": "Andrew Walbran",
"author_login": "qwandor",
"committed_at": "2026-07-22T17:33:11Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "97a4ca98ead29d12fddbfa9e443384f6dcb2afec",
"body": "Users might want to provide implementations of it without forcing it to\nbe used.",
"is_bot": false,
"headline": "Export MmioOps even if custom-mmio feature is not enabled.",
"author_name": "Andrew Walbran",
"author_login": "qwandor",
"committed_at": "2026-07-22T17:32:56Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "10e5164fa0191ea0eadd92b41b62d588ba09264b",
"body": null,
"is_bot": false,
"headline": "Rename backend/mod.rs to backend.rs.",
"author_name": "Andrew Walbran",
"author_login": "qwandor",
"committed_at": "2026-07-22T17:31:48Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5f2bd911e5767b771db4e35cea620e70fb291a02",
"body": "Backend refactoring",
"is_bot": false,
"headline": "Merge pull request #58 from osteffenrh/refactor",
"author_name": "Andrew Walbran",
"author_login": "qwandor",
"committed_at": "2026-07-22T17:06:50Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "86de27a799d4c15f02f73dc5d70de34a5e84a54d",
"body": "Move the UniqueMmioPointer and SharedMmioPointer read/write method\nimplementations from each backend module into lib.rs, eliminating the\ntriplication. Each backend now only provides its MmioOps\nimplementation; the pointer methods are defined once and dispatch\nthrough the conditionally re-exported ba\n[…]\nf that via volatile_read() / volatile_write(). The access pattern\nobserved by the MMIO device might change, but was not defined in the\nfirst place.\n\nSigned-off-by: Oliver Steffen <osteffen@redhat.com>",
"is_bot": false,
"headline": "lib: Unify read_unsafe/write_unsafe impls across backends",
"author_name": "Oliver Steffen",
"author_login": "osteffenrh",
"committed_at": "2026-07-14T05:04:19Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "4d1beb540232d5aea8e3a6c7e8c2274c5ee8aaf7",
"body": "Replace direct read_volatile/write_volatile calls with the shared\nMmioOps trait implementation. This unifies the volatile backend with\nthe aarch64 and custom-mmio backends.\n\nThe trait bounds on read_unsafe() and write_unsafe() tighten from\nunconstrained T to FromBytes + IntoBytes (read) and Immutabl\n[…]\nf that via volatile_read() / volatile_write(). The access pattern\nobserved by the MMIO device might change, but was not defined in the\nfirst place.\n\nSigned-off-by: Oliver Steffen <osteffen@redhat.com>",
"is_bot": false,
"headline": "backend/volatile: Implement MmioOps trait",
"author_name": "Oliver Steffen",
"author_login": "osteffenrh",
"committed_at": "2026-07-14T05:04:15Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "0408d34dd1ab8031bbff6fd097b12cf7a43b9cac",
"body": "The read_slice() and write_slice() methods previously selected the\nchunk size based only on the remaining byte count, without checking\npointer alignment. This could produce e.g. a 64-bit MMIO access at a\n32-bit-aligned address, which is unsound on platforms or with devices\nthat require natural align\n[…]\nis naturally aligned for that width, falling through to smaller sizes\notherwise.\n\nAdd round-trip tests at all byte offsets 0..8 for a 15-byte type.\n\nSigned-off-by: Oliver Steffen <osteffen@redhat.com>",
"is_bot": false,
"headline": "backend: Ensure naturally-aligned accesses in sliced read/write",
"author_name": "Oliver Steffen",
"author_login": "osteffenrh",
"committed_at": "2026-07-14T05:04:15Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "42d87886e225bb5e8b2ef7c0a13ae0c02715b1a0",
"body": "Consolidate aarch64_mmio, volatile_mmio, and custom_mmio under the\nbackend module. The conditional compilation logic moves from lib.rs\ninto backend/mod.rs. Strip the \"_mmio\" part from the backend filenames.\n\nAlso change how the MmioOps trait is exported for the consumer: Instead\nof safe_mmio::custom_mmio::MmioOps as safe_mmio::MmioOps, gated with the\ncustom-mmio feature.\n\nNo functional change.\n\nSigned-off-by: Oliver Steffen <osteffen@redhat.com>",
"is_bot": false,
"headline": "backend: Move all MMIO backend modules into backend/",
"author_name": "Oliver Steffen",
"author_login": "osteffenrh",
"committed_at": "2026-07-14T05:04:14Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c35a7c0da5e89d1fbba21f72ea680ef5c263cb46",
"body": "Implement MmioOps for the aarch64 backend, delegating to the existing\ninline-assembly functions. This replaces the duplicated mmio_read(),\nwrite_slice(), and read_slice() free functions with the shared trait\nimplementations.\n\nNo functional change.\n\nSigned-off-by: Oliver Steffen <osteffen@redhat.com>",
"is_bot": false,
"headline": "aarch64: Implement MmioOps trait for inline-assembly backend",
"author_name": "Oliver Steffen",
"author_login": "osteffenrh",
"committed_at": "2026-07-14T05:04:10Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d4972c0364d134342222ae2bdbb94ff6fc4fa6b5",
"body": "Move the MmioOps trait definition and its provided read/write\nimplementations into a new backend::mmio_ops module, so they can be\nreused by the other backends.\n\nNo functional change.\n\nSigned-off-by: Oliver Steffen <osteffen@redhat.com>",
"is_bot": false,
"headline": "custom_mmio: Extract MmioOps trait into backend module",
"author_name": "Oliver Steffen",
"author_login": "osteffenrh",
"committed_at": "2026-07-14T05:03:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ed6a8fb9009e120376739ffd46b8d66059af787a",
"body": "Move mmio_read(), mmio_write(), read_slice(), and write_slice() into\nthe MmioOps trait as provided methods, so they can be shared across\nbackends (later). Add a CustomMmioOps struct that delegates the\nprimitive\noperations to the consumer-provided extern functions.\n\nNo functional change.\n\nSigned-off-by: Oliver Steffen <osteffen@redhat.com>",
"is_bot": false,
"headline": "custom_mmio: Implement MmioOps trait for the custom backend",
"author_name": "Oliver Steffen",
"author_login": "osteffenrh",
"committed_at": "2026-07-14T04:37:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a0129677e917b4971c400373fa90eae9112f18d8",
"body": "The MmioOps trait does not need to be marked unsafe.\n\nSigned-off-by: Oliver Steffen <osteffen@redhat.com>",
"is_bot": false,
"headline": "custom_mmio: Drop unsafe from MmioOps trait",
"author_name": "Oliver Steffen",
"author_login": "osteffenrh",
"committed_at": "2026-07-14T04:37:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "76d6a7d60deeb4133a500a12006c228c6c15513c",
"body": "Turn the main() function into a #[test] so it is executed by the test\nframework, and update the doc comment accordingly.\n\nSigned-off-by: Oliver Steffen <osteffen@redhat.com>",
"is_bot": false,
"headline": "tests: Convert custom_mmio example to a proper test",
"author_name": "Oliver Steffen",
"author_login": "osteffenrh",
"committed_at": "2026-07-14T04:37:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "72ba2f906fbbf3769657a42424ed08618b0ed539",
"body": "Bumps [zerocopy](https://github.com/google/zerocopy) from 0.8.52 to 0.8.54.\n- [Release notes](https://github.com/google/zerocopy/releases)\n- [Commits](https://github.com/google/zerocopy/compare/v0.8.52...v0.8.54)\n\n---\nupdated-dependencies:\n- dependency-name: zerocopy\n dependency-version: 0.8.54\n d\n[…]\nirect:production\n update-type: version-update:semver-patch\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": "Bump zerocopy from 0.8.52 to 0.8.54 (#59)",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-07-10T09:54:01Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "df2b783cfed94b2448a289d166f786274123baef",
"body": "Bumps [actions/checkout](https://github.com/actions/checkout) from 6 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/v6...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": "Bump actions/checkout from 6 to 7 (#56)",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-06-22T11:24:35Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "89f584caaf32fcd4341a5a716c97d67be83edb9c",
"body": "Add custom MMIO backend",
"is_bot": false,
"headline": "Merge pull request #55 from osteffenrh/custom-mmio-backend",
"author_name": "Andrew Walbran",
"author_login": "qwandor",
"committed_at": "2026-06-17T13:19:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8471ff5a86f2f1517b14f2196e5252bea0deafe6",
"body": null,
"is_bot": false,
"headline": "Add to changelog.",
"author_name": "Andrew Walbran",
"author_login": "qwandor",
"committed_at": "2026-06-17T13:18:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e6aa7f999c37df9cc2f4138d2787f45b22efb6c3",
"body": null,
"is_bot": false,
"headline": "Fix doc tests for custom-mmio, and run them in CI.",
"author_name": "Andrew Walbran",
"author_login": "qwandor",
"committed_at": "2026-06-17T13:16:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "bdf94950e5b91300a0e90cefe76d165c97ba0f31",
"body": null,
"is_bot": false,
"headline": "Document custom-mmio feature on docs.rs.",
"author_name": "Andrew Walbran",
"author_login": "qwandor",
"committed_at": "2026-06-17T13:02:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1448bc37cec3edb6f735245f53386ea8a4ccf2dc",
"body": null,
"is_bot": false,
"headline": "Move example to integration test.",
"author_name": "Andrew Walbran",
"author_login": "qwandor",
"committed_at": "2026-06-17T12:58:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1890d8790134c4029f2d1a36e6ea64a80818498d",
"body": "Update the README.md and add describe the `custom-mmio` backend.\n\nSigned-off-by: Oliver Steffen <osteffen@redhat.com>",
"is_bot": false,
"headline": "Update README, describe custom-mmio backend",
"author_name": "Oliver Steffen",
"author_login": "osteffenrh",
"committed_at": "2026-06-17T04:22:11Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9a4affbfd32c1e91565214456393cdd925045dc5",
"body": "Add a simple example that demonstrates how to use the create.\nFor simplicity fields backed by regular memory are accessed.\n\nThe new `custom-mmio` backend can be used by running\n\n cargo run --example example --features custom-mmio\n\nThe example provides an `MmioOps` implementation that uses regular\nvolatile accesses.\n\nWithout any feature specification the default backend for the selected\narchitecture is used.\n\nSigned-off-by: Oliver Steffen <osteffen@redhat.com>",
"is_bot": false,
"headline": "Add a simple example",
"author_name": "Oliver Steffen",
"author_login": "osteffenrh",
"committed_at": "2026-06-17T04:22:11Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6167257ae8c4524b928a63790bf69704efcea30e",
"body": "Add a new backend, gated behind the `custom-mmio` Cargo feature, that\nallows consumers to provide their own MMIO read/write implementations.\n\nThe backend declares a set of extern \"Rust\" symbols for each access\nwidth (8/16/32/64-bit). Consumers implement the `MmioOps` trait and\ncall the `set_mmio_ops\n[…]\nVC exception handling for MMIO access provided by the\noperating system. In this case the software needs to fall back to\nexplicit GHCB vmexit calls.\n\nSigned-off-by: Oliver Steffen <osteffen@redhat.com>",
"is_bot": false,
"headline": "Add custom-mmio backend for consumer-provided MMIO implementations",
"author_name": "Oliver Steffen",
"author_login": "osteffenrh",
"committed_at": "2026-06-17T04:22:11Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "caa638edb273aecf81d0f7ffbe657951365555c2",
"body": "Bump zerocopy from 0.8.50 to 0.8.52",
"is_bot": true,
"headline": "Merge pull request #54 from google/dependabot/cargo/zerocopy-0.8.52",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-06-12T10:16:03Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "351ade8bed654722521c9e46f4f8326bf63987b5",
"body": "Small fixes around read_unafe() and write_unsafe()",
"is_bot": false,
"headline": "Merge pull request #53 from osteffenrh/mut-fix",
"author_name": "Andrew Walbran",
"author_login": "qwandor",
"committed_at": "2026-06-09T09:22:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "bed3235252f3542580d0b2ea1ea42f5aad31c5df",
"body": "Move the comment explaining the `&mut self` for read access\nto the correct function: `UniqueMmioPointer::read_unsafe()` instead of\n`write_unsafe()`.\n\nSigned-off-by: Oliver Steffen <osteffen@redhat.com>",
"is_bot": false,
"headline": "Move comment for read_unsafe()",
"author_name": "Oliver Steffen",
"author_login": "osteffenrh",
"committed_at": "2026-06-08T12:17:42Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "00d46f245a2abfa1b2a287c4b3e75e69b62ab7c1",
"body": "Make the self reference of `UniqueMmioPointer::write_unsafe()` in the\naarch64 implementation consistent with the default variant by making it\nmutable.\n\nSigned-off-by: Oliver Steffen <osteffen@redhat.com>",
"is_bot": false,
"headline": "Make aarch64 write_unsafe() signature consistent",
"author_name": "Oliver Steffen",
"author_login": "osteffenrh",
"committed_at": "2026-06-08T12:17:42Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e24f8b4674282def3f426cba8736d59a77286ce7",
"body": "Bumps [zerocopy](https://github.com/google/zerocopy) from 0.8.49 to 0.8.50.\n- [Release notes](https://github.com/google/zerocopy/releases)\n- [Commits](https://github.com/google/zerocopy/compare/v0.8.49...v0.8.50)\n\n---\nupdated-dependencies:\n- dependency-name: zerocopy\n dependency-version: 0.8.50\n d\n[…]\nirect:production\n update-type: version-update:semver-patch\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": "Bump zerocopy from 0.8.49 to 0.8.50 (#52)",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-06-05T09:58:22Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "3a9670475f6a112e7dc07176b2cafc2fb3cfee93",
"body": "Bumps [zerocopy](https://github.com/google/zerocopy) from 0.8.48 to 0.8.49.\n- [Release notes](https://github.com/google/zerocopy/releases)\n- [Changelog](https://github.com/google/zerocopy/blob/main/CHANGELOG.md)\n- [Commits](https://github.com/google/zerocopy/compare/v0.8.48...v0.8.49)\n\n---\nupdated-d\n[…]\nirect:production\n update-type: version-update:semver-patch\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": "Bump zerocopy from 0.8.48 to 0.8.49 (#51)",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-05-29T10:23:39Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "339b0d2fc615429773266180a67351d5c4f256be",
"body": "Bumps [zerocopy](https://github.com/google/zerocopy) from 0.8.47 to 0.8.48.\n- [Release notes](https://github.com/google/zerocopy/releases)\n- [Changelog](https://github.com/google/zerocopy/blob/main/CHANGELOG.md)\n- [Commits](https://github.com/google/zerocopy/compare/v0.8.47...v0.8.48)\n\n---\nupdated-d\n[…]\nirect:production\n update-type: version-update:semver-patch\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": "Bump zerocopy from 0.8.47 to 0.8.48 (#50)",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-04-07T10:42:47Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "559a8f4fe65ffe68f78f014261a75e0e71865edf",
"body": "Bumps [zerocopy](https://github.com/google/zerocopy) from 0.8.42 to 0.8.47.\n- [Release notes](https://github.com/google/zerocopy/releases)\n- [Changelog](https://github.com/google/zerocopy/blob/main/CHANGELOG.md)\n- [Commits](https://github.com/google/zerocopy/compare/v0.8.42...v0.8.47)\n\n---\nupdated-d\n[…]\nirect:production\n update-type: version-update:semver-patch\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": "Bump zerocopy from 0.8.42 to 0.8.47 (#49)",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-03-20T09:21:33Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "b83c13ec8df191f79ff4620f603d2dfe2b365302",
"body": "Bumps [zerocopy](https://github.com/google/zerocopy) from 0.8.41 to 0.8.42.\n- [Release notes](https://github.com/google/zerocopy/releases)\n- [Changelog](https://github.com/google/zerocopy/blob/main/CHANGELOG.md)\n- [Commits](https://github.com/google/zerocopy/compare/v0.8.41...v0.8.42)\n\n---\nupdated-d\n[…]\nirect:production\n update-type: version-update:semver-patch\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": "Bump zerocopy from 0.8.41 to 0.8.42 (#48)",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-03-16T11:28:13Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "edc679f80f99253909e08959ba65e24582778cd0",
"body": "Bump zerocopy from 0.8.40 to 0.8.41",
"is_bot": true,
"headline": "Merge pull request #47 from google/dependabot/cargo/zerocopy-0.8.41",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-03-09T10:44:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "990936e535754adf18cc364fdc52315b43c01c0b",
"body": null,
"is_bot": false,
"headline": "Prepare for 0.3.0 release.",
"author_name": "Andrew Walbran",
"author_login": "qwandor",
"committed_at": "2026-03-03T18:05:53Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c72c5217df1e5e94189689ebe96f3bdea96a34fe",
"body": "Take self by value rather than reference for split methods.",
"is_bot": false,
"headline": "Merge pull request #46 from google/value0",
"author_name": "Andrew Walbran",
"author_login": "qwandor",
"committed_at": "2026-03-03T18:04:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "dfde93b1df878d9e5766deee0045f5b43c624ab3",
"body": null,
"is_bot": false,
"headline": "Take self rather than &self for SharedMmioPointer::split.",
"author_name": "Andrew Walbran",
"author_login": "qwandor",
"committed_at": "2026-03-03T18:02:14Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "05827c919099cca05cb0add2041eeef56c2677a1",
"body": "This is consistent with how `take` works.",
"is_bot": false,
"headline": "Take self rather than `&mut self` for `UniqueMmioPointer::split`.",
"author_name": "Andrew Walbran",
"author_login": "qwandor",
"committed_at": "2026-03-03T17:59:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6e4c6ac2ec417c4d47cb48ced2ecc16838913f91",
"body": "Fix clippy warnings",
"is_bot": false,
"headline": "Merge pull request #45 from google/clippy",
"author_name": "Andrew Walbran",
"author_login": "qwandor",
"committed_at": "2026-03-03T17:56:27Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d8bfd600cb3a41c2f12db4a7e2360b7f2d8b0df3",
"body": null,
"is_bot": false,
"headline": "Fix clippy warnings.",
"author_name": "Andrew Walbran",
"author_login": "qwandor",
"committed_at": "2026-03-03T17:51:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5c88decb44bce83f0bb698d1d82ddddcfb79ba25",
"body": null,
"is_bot": false,
"headline": "Run clippy on tests.",
"author_name": "Andrew Walbran",
"author_login": "qwandor",
"committed_at": "2026-03-03T17:51:31Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c04e6977c92cad5062382f3adf51989206d0381a",
"body": "* Add get_range methods for array and slice types\n\nAdded `get_range()` methods `UniqueMmioPointer<[T]>`,\n`UniqueMmioPointer<[T; LEN]>`, `SharedMmioPointer<[T]>`,\n`SharedMmioPointer<[T; LEN]>`. These methods return a pointer to the\nsubset of elements, specified by a `Range`.\n\nSigned-off-by: Imre Kis \n[…]\nointerIterator` instances that\ncan be used to iterate over the elements of the pointer slices/arrays.\n\nSigned-off-by: Imre Kis <imre.kis@arm.com>\n\n---------\n\nSigned-off-by: Imre Kis <imre.kis@arm.com>",
"is_bot": false,
"headline": "Add get_range() and iterators (#43)",
"author_name": "Andrew Walbran",
"author_login": "qwandor",
"committed_at": "2026-03-03T16:33:19Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "ea9bc6f6d35a9fcb1c3c5df58badb4aa05557c5c",
"body": "Added `iter()` methods `UniqueMmioPointer<[T]>`,\n`UniqueMmioPointer<[T; LEN]>`, `SharedMmioPointer<[T]>`,\n`SharedMmioPointer<[T; LEN]>`. These methods return\n`UniqueMmioPointerIterator`, `SharedMmioPointerIterator` instances that\ncan be used to iterate over the elements of the pointer slices/arrays.\n\nSigned-off-by: Imre Kis <imre.kis@arm.com>",
"is_bot": false,
"headline": "Implement iterators for slice/array pointers",
"author_name": "Imre Kis",
"author_login": "imre-kis-arm",
"committed_at": "2026-03-03T14:58:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6e85fd75225c40836299c6302468bdcd55c20e68",
"body": "Added `get_range()` methods `UniqueMmioPointer<[T]>`,\n`UniqueMmioPointer<[T; LEN]>`, `SharedMmioPointer<[T]>`,\n`SharedMmioPointer<[T; LEN]>`. These methods return a pointer to the\nsubset of elements, specified by a `Range`.\n\nSigned-off-by: Imre Kis <imre.kis@arm.com>",
"is_bot": false,
"headline": "Add get_range methods for array and slice types",
"author_name": "Imre Kis",
"author_login": "imre-kis-arm",
"committed_at": "2026-03-03T14:56:27Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ee9773062d7be9e7103cac8062318d4ff873e31f",
"body": "Bumps [zerocopy](https://github.com/google/zerocopy) from 0.8.39 to 0.8.40.\n- [Release notes](https://github.com/google/zerocopy/releases)\n- [Changelog](https://github.com/google/zerocopy/blob/main/CHANGELOG.md)\n- [Commits](https://github.com/google/zerocopy/compare/v0.8.39...v0.8.40)\n\n---\nupdated-d\n[…]\nirect:production\n update-type: version-update:semver-patch\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": "Bump zerocopy from 0.8.39 to 0.8.40 (#44)",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-03-02T09:55:15Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "b1c0459604947d082d03cb3c7c682bb0978f7879",
"body": "Avoid local variable in field! and subfield! macros.",
"is_bot": false,
"headline": "Merge pull request #41 from google/modify",
"author_name": "Andrew Walbran",
"author_login": "qwandor",
"committed_at": "2026-02-20T04:42:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f0df4b3b78bdc4d2a4d6bb1347d5d3376710c3e0",
"body": null,
"is_bot": false,
"headline": "Update to 2024 edition.",
"author_name": "Andrew Walbran",
"author_login": "qwandor",
"committed_at": "2026-02-20T04:40:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7c553a5b03cf93ce97e2a48d87036581fc6c2683",
"body": "I had hoped to allow nesting of field! macros with this, but it only\nworks with 2021 edition.",
"is_bot": false,
"headline": "Avoid local variable in field! and field_shared! macros.",
"author_name": "Andrew Walbran",
"author_login": "qwandor",
"committed_at": "2026-02-20T04:40:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2fef5e10ba81f7834cfdf006b108304d2e063672",
"body": null,
"is_bot": false,
"headline": "Add methods to read-modify-write a field. (#40)",
"author_name": "Andrew Walbran",
"author_login": "qwandor",
"committed_at": "2026-02-20T02:11:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "56e851e54e339a2ee5e5bf90910255aea869f8a8",
"body": null,
"is_bot": false,
"headline": "Add methods to read-modify-write a field.",
"author_name": "Andrew Walbran",
"author_login": "qwandor",
"committed_at": "2026-02-20T02:07:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "198a13b2b25f8b46dcafc36743b8b170ef88dc2c",
"body": "Bumps [zerocopy](https://github.com/google/zerocopy) from 0.8.37 to 0.8.39.\n- [Release notes](https://github.com/google/zerocopy/releases)\n- [Changelog](https://github.com/google/zerocopy/blob/main/CHANGELOG.md)\n- [Commits](https://github.com/google/zerocopy/compare/v0.8.37...v0.8.39)\n\n---\nupdated-d\n[…]\nirect:production\n update-type: version-update:semver-patch\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": "Bump zerocopy from 0.8.37 to 0.8.39 (#37)",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-02-15T20:52:16Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "22520c1a4cc90cdc06c3f52591f784ea2bb0921c",
"body": "Bumps [zerocopy](https://github.com/google/zerocopy) from 0.8.34 to 0.8.37.\n- [Release notes](https://github.com/google/zerocopy/releases)\n- [Changelog](https://github.com/google/zerocopy/blob/main/CHANGELOG.md)\n- [Commits](https://github.com/google/zerocopy/compare/v0.8.34...v0.8.37)\n\n---\nupdated-d\n[…]\nirect:production\n update-type: version-update:semver-patch\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": "Bump zerocopy from 0.8.34 to 0.8.37 (#36)",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-02-02T22:21:40Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "5f6c31e59f80a876503f07575de3bb7256d85076",
"body": "Bump zerocopy from 0.8.33 to 0.8.34",
"is_bot": true,
"headline": "Merge pull request #35 from google/dependabot/cargo/zerocopy-0.8.34",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-01-26T10:55:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d9fa307f739a155ccb0d1486015e38e25645dfbb",
"body": "Bump zerocopy from 0.8.31 to 0.8.33",
"is_bot": false,
"headline": "Merge pull request #34 from google/dependabot/cargo/zerocopy-0.8.33",
"author_name": "Andrew Walbran",
"author_login": "qwandor",
"committed_at": "2026-01-12T12:26:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a122c94f92bb5ee5fed2331f989295a4eb1184cf",
"body": "Bumps [zerocopy](https://github.com/google/zerocopy) from 0.8.31 to 0.8.33.\n- [Release notes](https://github.com/google/zerocopy/releases)\n- [Changelog](https://github.com/google/zerocopy/blob/main/CHANGELOG.md)\n- [Commits](https://github.com/google/zerocopy/compare/v0.8.31...v0.8.33)\n\n---\nupdated-d\n[…]\nncies:\n- dependency-name: zerocopy\n dependency-version: 0.8.33\n dependency-type: direct:production\n update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>",
"is_bot": true,
"headline": "Bump zerocopy from 0.8.31 to 0.8.33",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-01-12T07:48:59Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "9d25b168b49edc55f5e5f94586d7c5f57725943d",
"body": null,
"is_bot": false,
"headline": "Prepare for 0.2.7 release.",
"author_name": "Andrew Walbran",
"author_login": "qwandor",
"committed_at": "2026-01-06T16:15:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "55b934b050849dbbf596d21ae6ab51be54487c6f",
"body": "Add split_some to UniqueMmioPointer arrays and slices.",
"is_bot": false,
"headline": "Merge pull request #32 from google/split_some",
"author_name": "Andrew Walbran",
"author_login": "qwandor",
"committed_at": "2026-01-06T16:13:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "eb2ab179de34f9e0dab53f8c6406ebd0e09c4fae",
"body": null,
"is_bot": false,
"headline": "Add split_some to UniqueMmioPointer arrays and slices.",
"author_name": "Andrew Walbran",
"author_login": "qwandor",
"committed_at": "2026-01-06T16:07:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "655f54117c011912f9a2c6f9f446c4e471e7da54",
"body": null,
"is_bot": false,
"headline": "Prepare for 0.2.6 release.",
"author_name": "Andrew Walbran",
"author_login": "qwandor",
"committed_at": "2025-12-01T17:02:56Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1638ba9eacfae5e0f788930c395e29a2d4800f53",
"body": null,
"is_bot": false,
"headline": "Update versions in comparison.",
"author_name": "Andrew Walbran",
"author_login": "qwandor",
"committed_at": "2025-12-01T17:02:41Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "539fed921dc97a0e6404bb3add2f1b12ddedbd40",
"body": "* Fix clippy warnings.\n\n* Use get rather than split to get a single element.",
"is_bot": false,
"headline": "Use get rather than split to get a single element. (#30)",
"author_name": "Andrew Walbran",
"author_login": "qwandor",
"committed_at": "2025-12-01T16:44:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "46109ec48873e9c4045b31d244d76fddf086087d",
"body": null,
"is_bot": false,
"headline": "Use get rather than split to get a single element.",
"author_name": "Andrew Walbran",
"author_login": "qwandor",
"committed_at": "2025-12-01T16:43:28Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "24fd0dc1de34c860aa9b17bc943946a16e7d71f3",
"body": null,
"is_bot": false,
"headline": "Fix clippy warnings.",
"author_name": "Andrew Walbran",
"author_login": "qwandor",
"committed_at": "2025-12-01T16:34:03Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2e3743ce8ccb6ed380fa18c4af746c0d6be6b17c",
"body": "Bumps [zerocopy](https://github.com/google/zerocopy) from 0.8.28 to 0.8.31.\n- [Release notes](https://github.com/google/zerocopy/releases)\n- [Changelog](https://github.com/google/zerocopy/blob/main/CHANGELOG.md)\n- [Commits](https://github.com/google/zerocopy/compare/v0.8.28...v0.8.31)\n\n---\nupdated-d\n[…]\nirect:production\n update-type: version-update:semver-patch\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": "Bump zerocopy from 0.8.28 to 0.8.31 (#29)",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2025-12-01T11:32:16Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "bb96628362b7fcde7059e8eb63bdddaff18220aa",
"body": "Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6.\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...v6)\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": "Bump actions/checkout from 5 to 6 (#27)",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2025-11-24T11:37:30Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "1a4e3677f77032ec5ce4d7423600769a98f97ce6",
"body": "Bumps [zerocopy](https://github.com/google/zerocopy) from 0.8.27 to 0.8.28.\n- [Release notes](https://github.com/google/zerocopy/releases)\n- [Changelog](https://github.com/google/zerocopy/blob/main/CHANGELOG.md)\n- [Commits](https://github.com/google/zerocopy/compare/v0.8.27...v0.8.28)\n\n---\nupdated-d\n[…]\nirect:production\n update-type: version-update:semver-patch\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": "Bump zerocopy from 0.8.27 to 0.8.28 (#28)",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2025-11-24T11:37:25Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "d336ec9c1968306d22274ae939f4957e4aa3d9f6",
"body": "Bumps [zerocopy](https://github.com/google/zerocopy) from 0.8.26 to 0.8.27.\n- [Release notes](https://github.com/google/zerocopy/releases)\n- [Changelog](https://github.com/google/zerocopy/blob/main/CHANGELOG.md)\n- [Commits](https://github.com/google/zerocopy/compare/v0.8.26...v0.8.27)\n\n---\nupdated-d\n[…]\nirect:production\n update-type: version-update:semver-patch\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": "Bump zerocopy from 0.8.26 to 0.8.27 (#25)",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2025-09-08T10:29:12Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "51a3ad97a9e12beb2259781eab6898becc05059d",
"body": "Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5.\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/v4...v5)\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": "Bump actions/checkout from 4 to 5 (#24)",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2025-08-18T12:03:26Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "e36b67428771e47748fe87ec863f3a5fe9a833da",
"body": "Bumps [zerocopy](https://github.com/google/zerocopy) from 0.8.25 to 0.8.26.\n- [Release notes](https://github.com/google/zerocopy/releases)\n- [Changelog](https://github.com/google/zerocopy/blob/main/CHANGELOG.md)\n- [Commits](https://github.com/google/zerocopy/compare/v0.8.25...v0.8.26)\n\n---\nupdated-d\n[…]\nirect:production\n update-type: version-update:semver-patch\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": "Bump zerocopy from 0.8.25 to 0.8.26 (#23)",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2025-06-23T09:31:14Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "fe9eb3b88c0288a9e48d3e7b1999b1d50ab700c7",
"body": "Bumps [zerocopy](https://github.com/google/zerocopy) from 0.8.24 to 0.8.25.\n- [Release notes](https://github.com/google/zerocopy/releases)\n- [Changelog](https://github.com/google/zerocopy/blob/main/CHANGELOG.md)\n- [Commits](https://github.com/google/zerocopy/compare/v0.8.24...v0.8.25)\n\n---\nupdated-d\n[…]\nirect:production\n update-type: version-update:semver-patch\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": "Bump zerocopy from 0.8.24 to 0.8.25 (#22)",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2025-04-28T09:52:45Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "bb9ceeeeb79464aeebc248b2d74f63b0668c79d7",
"body": null,
"is_bot": false,
"headline": "Add required Rust version to Cargo.toml.",
"author_name": "Andrew Walbran",
"author_login": "qwandor",
"committed_at": "2025-04-16T10:32:26Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fc70c4f63fa3040759ab68209577cc2447a43011",
"body": null,
"is_bot": false,
"headline": "Prepare for 0.2.5 release.",
"author_name": "Andrew Walbran",
"author_login": "qwandor",
"committed_at": "2025-04-10T13:12:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cff5236da44681131834f97e6683c88672232966",
"body": "Make `SharedMmioPointer` implement `Copy` and extend lifetimes of return values",
"is_bot": false,
"headline": "Merge pull request #18 from google/copy",
"author_name": "Andrew Walbran",
"author_login": "qwandor",
"committed_at": "2025-04-10T13:11:03Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "29d0892a8d695d36abef1dea9284f49dfdd2e6fa",
"body": "reference lifetime.",
"is_bot": false,
"headline": "Don't tie lifetimes of SharedMmioPointer method return values to",
"author_name": "Andrew Walbran",
"author_login": "qwandor",
"committed_at": "2025-04-09T15:59:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3a81fb3916abac67560148964fa7b43b08c740cd",
"body": "It is already Clone, and is pointer-sized. This is consistent with\nshared references.",
"is_bot": false,
"headline": "Implement Copy for SharedMmioPointer.",
"author_name": "Andrew Walbran",
"author_login": "qwandor",
"committed_at": "2025-04-09T15:27:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e3235d420cda4befeab9097bb4f9732235a68d74",
"body": "Add method to take element from slice or array, and to convert pointer to array to array of pointers",
"is_bot": false,
"headline": "Merge pull request #17 from google/split",
"author_name": "Andrew Walbran",
"author_login": "qwandor",
"committed_at": "2025-04-09T15:23:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f1f6ef0a989982abd06db48eb485f8f140530c50",
"body": null,
"is_bot": false,
"headline": "Add From implementation for pointer to array to array of pointers.",
"author_name": "Andrew Walbran",
"author_login": "qwandor",
"committed_at": "2025-04-08T16:56:11Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "68ccfcba0ec6a87a1b2930efe6f536feb58f92cb",
"body": null,
"is_bot": false,
"headline": "Add method to take element from slice or array.",
"author_name": "Andrew Walbran",
"author_login": "qwandor",
"committed_at": "2025-04-08T16:53:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "73d39337d2b2ab0724e4e4208f99fda37a16685b",
"body": null,
"is_bot": false,
"headline": "Prepare for 0.2.4 release.",
"author_name": "Andrew Walbran",
"author_login": "qwandor",
"committed_at": "2025-04-08T10:46:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9418e21156b608732f8a6d9ab4a4015cf23ce462",
"body": "Add split_fields! macro to split a struct into several fields.",
"is_bot": false,
"headline": "Merge pull request #15 from google/split",
"author_name": "Andrew Walbran",
"author_login": "qwandor",
"committed_at": "2025-04-08T10:45:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "285d8e6635c9026e2b7b2776fb0022d462640af5",
"body": null,
"is_bot": false,
"headline": "Add split_fields! macro to split a struct into several fields.",
"author_name": "Andrew Walbran",
"author_login": "qwandor",
"committed_at": "2025-04-07T18:38:53Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cfaa58632e574e70c911fb1cd86d070904fb6a95",
"body": "Add conversions between single elements, arrays and slices.",
"is_bot": false,
"headline": "Merge pull request #14 from google/arrayslice",
"author_name": "Andrew Walbran",
"author_login": "qwandor",
"committed_at": "2025-04-04T17:11:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "467ed3ab8ca9d06d29c004872144c9e7c9cb2702",
"body": null,
"is_bot": false,
"headline": "Add conversions between single elements, arrays and slices.",
"author_name": "Andrew Walbran",
"author_login": "qwandor",
"committed_at": "2025-04-04T17:04:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "11e49ec7f3d57dd198e7f92ddc5acccf67eb6a1e",
"body": "Update details of derive-mmio in readme.",
"is_bot": false,
"headline": "Merge pull request #13 from google/readme",
"author_name": "Andrew Walbran",
"author_login": "qwandor",
"committed_at": "2025-04-04T17:03:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "33d6426c428954e7bbc4b5bf4a522af8f9421f14",
"body": null,
"is_bot": false,
"headline": "Update details of derive-mmio in readme.",
"author_name": "Andrew Walbran",
"author_login": "qwandor",
"committed_at": "2025-04-04T17:02:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "151aacabd8c4bf9db37c5dae703018d621fa1488",
"body": null,
"is_bot": false,
"headline": "Prepare for 0.2.3 release.",
"author_name": "Andrew Walbran",
"author_login": "qwandor",
"committed_at": "2025-04-04T15:53:16Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "026fea07352166189d2c0782d0959f790be32c53",
"body": "Fix getting unsized fields and add reborrow method",
"is_bot": false,
"headline": "Merge pull request #11 from google/reborrow",
"author_name": "Andrew Walbran",
"author_login": "qwandor",
"committed_at": "2025-04-04T15:50:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b92f3d59a27808416c14ced1174f8c9412829ebd",
"body": null,
"is_bot": false,
"headline": "Add UniqueMmioPointer::reborrow.",
"author_name": "Andrew Walbran",
"author_login": "qwandor",
"committed_at": "2025-04-04T15:49:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fbf97555c7acfc18d97997708d3eb98f0aef2586",
"body": "Added tests for array and slice within struct.",
"is_bot": false,
"headline": "Allow getting unsized children.",
"author_name": "Andrew Walbran",
"author_login": "qwandor",
"committed_at": "2025-04-04T15:49:01Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a70d0b594730bd10fc793ecdf4f6ac678aaf266f",
"body": "Make PhysicalInstance methods const too.",
"is_bot": false,
"headline": "Merge pull request #9 from google/const",
"author_name": "Andrew Walbran",
"author_login": "qwandor",
"committed_at": "2025-03-27T14:28:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7a56032a6265db3b012cf4ddbce5b3eb6b6aefd1",
"body": null,
"is_bot": false,
"headline": "Make PhysicalInstance methods const too.",
"author_name": "Andrew Walbran",
"author_login": "qwandor",
"committed_at": "2025-03-27T14:28:00Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b75a3e344eff12f0a1efd7704c057bbc801afdc6",
"body": "Make as many methods const as possible.",
"is_bot": false,
"headline": "Merge pull request #8 from google/const",
"author_name": "Andrew Walbran",
"author_login": "qwandor",
"committed_at": "2025-03-26T18:30:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1c1b73e0aa425f6d877a860d6a5e4254e5111c0e",
"body": null,
"is_bot": false,
"headline": "Fix clippy warnings.",
"author_name": "Andrew Walbran",
"author_login": "qwandor",
"committed_at": "2025-03-26T18:30:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cce309ff88c09d5f3e88c1d208be5950bc10cb6c",
"body": null,
"is_bot": false,
"headline": "Make as many methods const as possible.",
"author_name": "Andrew Walbran",
"author_login": "qwandor",
"committed_at": "2025-03-26T18:20:22Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "531e7509c401a0d67ceb4fef7353355b60c422ba",
"body": null,
"is_bot": false,
"headline": "Prepare for 0.2.2 release.",
"author_name": "Andrew Walbran",
"author_login": "qwandor",
"committed_at": "2025-03-25T12:34:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4052b1313a0aafc715b7dff0627c1b29e149f88c",
"body": "Derive KnownLayout for ReadPureWrite too.",
"is_bot": false,
"headline": "Merge pull request #6 from google/knownlayout",
"author_name": "Andrew Walbran",
"author_login": "qwandor",
"committed_at": "2025-03-25T12:24:56Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6acba6c434c32ef7639fa493b02bdee6203892b2",
"body": null,
"is_bot": false,
"headline": "Use repr(C) for test structs.",
"author_name": "Andrew Walbran",
"author_login": "qwandor",
"committed_at": "2025-03-25T12:21:14Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "332fa9689898a0489855649bbb5712705628a882",
"body": "This was missed accidentally before.",
"is_bot": false,
"headline": "Derive KnownLayout for ReadPureWrite too.",
"author_name": "Andrew Walbran",
"author_login": "qwandor",
"committed_at": "2025-03-25T12:20:41Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a41de87323d40a001bbafd9307ade70a5f7bf471",
"body": "Bumps [zerocopy](https://github.com/google/zerocopy) from 0.8.23 to 0.8.24.\n- [Release notes](https://github.com/google/zerocopy/releases)\n- [Changelog](https://github.com/google/zerocopy/blob/main/CHANGELOG.md)\n- [Commits](https://github.com/google/zerocopy/compare/v0.8.23...v0.8.24)\n\n---\nupdated-d\n[…]\nirect:production\n update-type: version-update:semver-patch\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": "Bump zerocopy from 0.8.23 to 0.8.24 (#5)",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2025-03-24T11:08:33Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "35fce5bdc254133f713784ed43f3ddcf0ecaf69a",
"body": null,
"is_bot": false,
"headline": "Prepare for 0.2.1 release.",
"author_name": "Andrew Walbran",
"author_login": "qwandor",
"committed_at": "2025-03-17T18:11:56Z",
"body_truncated": false,
"is_coding_agent": false
}
],
"releases_count": 11,
"commits_last_year": 64,
"latest_release_at": "2026-07-23T09:30:28Z",
"latest_release_tag": "0.3.1",
"releases_from_tags": false,
"days_since_last_push": 0,
"active_weeks_last_year": 21,
"days_since_latest_release": 0,
"mean_days_between_releases": 54.7
},
"community": {
"has_readme": true,
"has_license": true,
"has_description": true,
"has_contributing": true,
"health_percentage": 75,
"has_issue_template": false,
"has_code_of_conduct": true,
"has_pull_request_template": false
},
"ecosystem": {
"packages": [
{
"name": "safe-mmio",
"exists": true,
"license": "MIT OR Apache-2.0",
"keywords": [
"mmio",
"embedded",
"no-std"
],
"ecosystem": "crates",
"matches_repo": true,
"registry_url": "https://crates.io/crates/safe-mmio",
"is_deprecated": false,
"latest_version": "0.3.1",
"repository_url": "https://github.com/google/safe-mmio",
"versions_count": 11,
"total_downloads": 262141,
"dependents_count": null,
"deprecation_note": null,
"maintainers_count": null,
"monthly_downloads": 38642,
"first_published_at": "2025-02-24T15:05:48.938519Z",
"latest_published_at": "2026-07-23T09:30:04.782918Z",
"latest_version_yanked": false,
"days_since_latest_publish": 0
}
]
},
"popularity": {
"forks": 8,
"stars": 39,
"watchers": 6,
"fork_history": {
"days": [
{
"date": "2025-03-29",
"count": 1
},
{
"date": "2025-04-16",
"count": 1
},
{
"date": "2025-04-21",
"count": 1
},
{
"date": "2025-08-09",
"count": 1
},
{
"date": "2025-09-09",
"count": 1
},
{
"date": "2026-02-19",
"count": 1
},
{
"date": "2026-06-02",
"count": 1
},
{
"date": "2026-07-12",
"count": 1
}
],
"complete": true,
"collected": 8,
"total_forks": 8
},
"star_history": null,
"open_issues_and_prs": 1
},
"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"
],
"largest_source_bytes": 59403,
"source_files_sampled": 9,
"oversized_source_files": 0,
"agent_instruction_files": [],
"agent_instruction_max_bytes": null
},
"dependencies": {
"manifests": [
"Cargo.toml"
],
"advisories": {
"error": null,
"scope": "repository_graph",
"source": "osv",
"findings": [],
"collected": true,
"malicious": [],
"truncated": false,
"by_severity": {},
"advisory_count": 0,
"affected_count": 0,
"assessed_count": 6,
"malicious_count": 0,
"assessed_package": null,
"unassessed_count": 0,
"direct_affected_count": 0
},
"ecosystems": [
"crates"
],
"dependencies": [
{
"name": "zerocopy",
"manifest": "Cargo.toml",
"ecosystem": "crates",
"version_constraint": "0.8.50"
}
],
"all_dependencies": {
"error": null,
"source": "github-sbom",
"packages": [
{
"name": "zerocopy",
"direct": true,
"version": "0.8.54",
"ecosystem": "crates"
},
{
"name": "proc-macro2",
"direct": false,
"version": "1.0.93",
"ecosystem": "crates"
},
{
"name": "quote",
"direct": false,
"version": "1.0.42",
"ecosystem": "crates"
},
{
"name": "syn",
"direct": false,
"version": "2.0.98",
"ecosystem": "crates"
},
{
"name": "unicode-ident",
"direct": false,
"version": "1.0.17",
"ecosystem": "crates"
},
{
"name": "zerocopy-derive",
"direct": false,
"version": "0.8.54",
"ecosystem": "crates"
}
],
"collected": true,
"truncated": false,
"total_count": 6,
"direct_count": 1,
"indirect_count": 5
}
},
"maintainership": {
"issues": {
"open_prs": 0,
"merged_prs": 53,
"open_issues": 1,
"closed_ratio": 0.8,
"closed_issues": 4,
"closed_unmerged_prs": 2
},
"bus_factor": 1,
"bot_contributors": 1,
"top_contributors": [
{
"type": "User",
"login": "qwandor",
"commits": 106,
"avatar_url": "https://avatars.githubusercontent.com/u/103097?v=4"
},
{
"type": "User",
"login": "osteffenrh",
"commits": 14,
"avatar_url": "https://avatars.githubusercontent.com/u/95756456?v=4"
},
{
"type": "User",
"login": "imre-kis-arm",
"commits": 2,
"avatar_url": "https://avatars.githubusercontent.com/u/50944609?v=4"
}
],
"contributors_sampled": 3,
"top_contributor_share": 0.869
},
"quality_signals": {
"has_ci": true,
"has_tests": true,
"ci_workflows": [
"rust.yml"
],
"has_docs_dir": false,
"linter_configs": [],
"has_editorconfig": false,
"has_linter_config": false,
"has_precommit_config": false
},
"security_signals": {
"lockfiles": [
"Cargo.lock"
],
"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": 0,
"reason": "branch protection not enabled on development/release branches",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#branch-protection"
},
{
"name": "CI-Tests",
"score": 10,
"reason": "9 out of 9 merged PRs checked by a CI test -- score normalized to 10",
"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": 7,
"reason": "Found 3/4 approved changesets -- score normalized to 7",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#code-review"
},
{
"name": "Contributors",
"score": 10,
"reason": "project has 3 contributing companies or organizations -- score normalized to 10",
"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": 9,
"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 1 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": 10,
"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": "9bef6d8c90fd60fc619018e21b43e3c584074a5b",
"ran_at": "2026-07-23T11:15:27Z",
"aggregate_score": 6.2,
"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-23T09:29:56Z",
"oldest_open_prs": [],
"last_merged_pr_at": "2026-07-23T09:29:23Z",
"ci_last_conclusion": "SUCCESS",
"oldest_open_issues": [
{
"number": 39,
"created_at": "2026-02-20T01:07:50Z",
"last_comment_at": "2026-02-20T07:42:20Z",
"last_comment_author": "flaviojs"
}
]
}
},
"config": {
"disabled_metrics": [],
"disabled_categories": [],
"disabled_components": {}
},
"source": {
"url": "https://github.com/google/safe-mmio",
"host": "github.com",
"name": "safe-mmio",
"owner": "google"
},
"metrics": {
"overall": {
"key": "overall",
"band": "moderate",
"name": "Overall health",
"note": null,
"notes": [],
"value": 69,
"inputs": {
"security": 70,
"vitality": 83,
"community": 61,
"governance": 69,
"engineering": 61
},
"components": []
},
"categories": [
{
"key": "vitality",
"band": "good",
"name": "Vitality",
"value": 83,
"weight": 0.22,
"metrics": [
{
"key": "development_activity",
"band": "good",
"name": "Development activity",
"note": null,
"notes": [],
"value": 77,
"inputs": {
"commits_last_year": 64,
"human_commit_share": 0.78,
"days_since_last_push": 0,
"active_weeks_last_year": 21
},
"components": [
{
"key": "push_recency",
"name": "Push recency",
"detail": "last push 0 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "push_recency",
"params": {
"days": 0
}
}
],
"max_points": 36
},
{
"key": "commit_cadence",
"name": "Commit cadence",
"detail": "21/52 weeks with commits",
"points": 14.5,
"status": "partial",
"details": [
{
"code": "commit_cadence_weeks",
"params": {
"weeks": 21
}
}
],
"max_points": 36
},
{
"key": "commit_volume",
"name": "Commit volume",
"detail": "64 commits in the last year",
"points": 16.3,
"status": "partial",
"details": [
{
"code": "commits_last_year",
"params": {
"count": 64
}
}
],
"max_points": 18
},
{
"key": "openssf_scorecard_maintained",
"name": "OpenSSF Scorecard: Maintained",
"detail": "30 commit(s) and 1 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": 11,
"latest_release_tag": "0.3.1",
"releases_from_tags": false,
"days_since_latest_release": 0,
"mean_days_between_releases": 54.7
},
"components": [
{
"key": "ships_releases",
"name": "Ships releases",
"detail": "11 releases published",
"points": 27,
"status": "met",
"details": [
{
"code": "releases_published",
"params": {
"count": 11
}
}
],
"max_points": 27
},
{
"key": "release_recency",
"name": "Release recency",
"detail": "latest release 0 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "release_recency",
"params": {
"days": 0
}
}
],
"max_points": 36
},
{
"key": "release_cadence",
"name": "Release cadence",
"detail": "a release every ~54.7 days",
"points": 19.8,
"status": "partial",
"details": [
{
"code": "release_cadence",
"params": {
"gap": 54.7
}
}
],
"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": "excellent",
"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": 0,
"days_since_last_human_commit_is_floor": false
},
"components": [
{
"key": "project_is_still_maintained",
"name": "Project is still maintained",
"detail": "last human commit 0 days ago",
"points": 100,
"status": "met",
"details": [
{
"code": "abandonment_maintained",
"params": {
"days": 0
}
}
],
"max_points": 100
}
]
}
],
"description": "Is the project alive — is code being written and are releases shipping?"
},
{
"key": "community",
"band": "moderate",
"name": "Community & Adoption",
"value": 61,
"weight": 0.18,
"metrics": [
{
"key": "popularity",
"band": "at_risk",
"name": "Popularity & adoption",
"note": null,
"notes": [],
"value": 36,
"inputs": {
"forks": 8,
"stars": 39,
"watchers": 6,
"growth_state": "unverified",
"growth_factor_pct": 100,
"growth_unverified_reason": "no_history"
},
"components": [
{
"key": "stars",
"name": "Stars",
"detail": "39 stars",
"points": 25.6,
"status": "partial",
"details": [
{
"code": "stars",
"params": {
"count": 39
}
}
],
"max_points": 60
},
{
"key": "forks",
"name": "Forks",
"detail": "8 forks",
"points": 7,
"status": "partial",
"details": [
{
"code": "forks",
"params": {
"count": 8
}
}
],
"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": "good",
"name": "Community health",
"note": null,
"notes": [],
"value": 79,
"inputs": {
"has_readme": true,
"has_license": true,
"has_contributing": true,
"has_issue_template": false,
"has_code_of_conduct": true,
"has_pull_request_template": false
},
"components": [
{
"key": "readme",
"name": "README",
"detail": null,
"points": 22.5,
"status": "met",
"details": [],
"max_points": 22.5
},
{
"key": "license",
"name": "License",
"detail": "license file present, not a recognized license",
"points": 16.9,
"status": "partial",
"details": [
{
"code": "license_custom",
"params": {}
}
],
"max_points": 22.5
},
{
"key": "contributing_guide",
"name": "CONTRIBUTING guide",
"detail": null,
"points": 18,
"status": "met",
"details": [],
"max_points": 18
},
{
"key": "code_of_conduct",
"name": "Code of conduct",
"detail": null,
"points": 13.5,
"status": "met",
"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": 0,
"status": "missed",
"details": [],
"max_points": 6.3
}
]
},
{
"key": "ecosystem_adoption",
"band": "good",
"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": 76,
"inputs": {
"packages": [
"safe-mmio"
],
"dependents": null,
"ecosystems": "crates",
"total_downloads": 262141,
"monthly_downloads": 38642
},
"components": [
{
"key": "monthly_downloads",
"name": "Monthly downloads",
"detail": "38,642 downloads/month across crates",
"points": 61.2,
"status": "partial",
"details": [
{
"code": "downloads_monthly",
"params": {
"count": 38642,
"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": "moderate",
"name": "Sustainability & Governance",
"value": 69,
"weight": 0.24,
"metrics": [
{
"key": "maintainer_resilience",
"band": "critical",
"name": "Maintainer resilience (bus factor)",
"note": null,
"notes": [],
"value": 26,
"inputs": {
"bus_factor": 1,
"contributors_sampled": 3,
"top_contributor_share": 0.869
},
"components": [
{
"key": "bus_factor",
"name": "Bus factor",
"detail": "1 contributor(s) cover half of all commits",
"points": 9,
"status": "partial",
"details": [
{
"code": "bus_factor",
"params": {
"count": 1
}
}
],
"max_points": 54
},
{
"key": "commit_distribution",
"name": "Commit distribution",
"detail": "top contributor authored 87% of commits",
"points": 2.9,
"status": "partial",
"details": [
{
"code": "top_contributor_share",
"params": {
"share": 87
}
}
],
"max_points": 22.5
},
{
"key": "contributor_breadth",
"name": "Contributor breadth",
"detail": "3 contributors",
"points": 4.1,
"status": "partial",
"details": [
{
"code": "contributors_sampled",
"params": {
"count": 3
}
}
],
"max_points": 13.5
},
{
"key": "openssf_scorecard_contributors",
"name": "OpenSSF Scorecard: Contributors",
"detail": "project has 3 contributing companies or organizations -- score normalized to 10",
"points": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
},
{
"key": "responsiveness",
"band": "excellent",
"name": "Issue & PR responsiveness",
"note": null,
"notes": [],
"value": 85,
"inputs": {
"merged_prs": 53,
"open_issues": 1,
"closed_issues": 4,
"issue_closed_ratio": 0.8,
"closed_unmerged_prs": 2
},
"components": [
{
"key": "issue_resolution",
"name": "Issue resolution",
"detail": "80% of issues closed",
"points": 37.4,
"status": "partial",
"details": [
{
"code": "issues_closed_share",
"params": {
"share": 80
}
}
],
"max_points": 46.75
},
{
"key": "pr_acceptance",
"name": "PR acceptance",
"detail": "53/55 decided PRs merged",
"points": 36.9,
"status": "partial",
"details": [
{
"code": "decided_prs_merged",
"params": {
"merged": 53,
"decided": 55
}
}
],
"max_points": 38.25
},
{
"key": "openssf_scorecard_code_review",
"name": "OpenSSF Scorecard: Code-Review",
"detail": "Found 3/4 approved changesets -- score normalized to 7",
"points": 10.5,
"status": "partial",
"details": [],
"max_points": 15
}
]
},
{
"key": "stewardship",
"band": "good",
"name": "Ownership & stewardship",
"note": null,
"notes": [],
"value": 80,
"inputs": {
"followers": 75849,
"owner_type": "Organization",
"is_verified": null,
"owner_login": "google",
"public_repos": 2887,
"account_age_days": 5300
},
"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": "75,849 followers of google",
"points": 25,
"status": "met",
"details": [
{
"code": "owner_followers",
"params": {
"count": 75849,
"login": "google"
}
}
],
"max_points": 25
},
{
"key": "track_record",
"name": "Track record",
"detail": "2887 public repos, account ~14 yr old",
"points": 25,
"status": "met",
"details": [
{
"code": "public_repos",
"params": {
"count": 2887
}
},
{
"code": "account_age_years",
"params": {
"years": 14
}
}
],
"max_points": 25
}
]
},
{
"key": "package_maintenance",
"band": "excellent",
"name": "Package maintenance",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"packages": [
"safe-mmio"
],
"ecosystems": "crates",
"any_deprecated": false,
"min_days_since_publish": 0
},
"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 0 days ago",
"points": 35,
"status": "met",
"details": [
{
"code": "publish_recency",
"params": {
"days": 0
}
}
],
"max_points": 35
},
{
"key": "version_history",
"name": "Version history",
"detail": "11 published versions",
"points": 20,
"status": "met",
"details": [
{
"code": "published_versions",
"params": {
"count": 11
}
}
],
"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": 61,
"weight": 0.2,
"metrics": [
{
"key": "engineering_practices",
"band": "moderate",
"name": "Engineering practices",
"note": null,
"notes": [],
"value": 68,
"inputs": {
"has_ci": true,
"has_tests": true,
"has_editorconfig": false,
"has_linter_config": false,
"has_precommit_config": false
},
"components": [
{
"key": "ci_workflows",
"name": "CI workflows",
"detail": "1 workflow(s)",
"points": 24,
"status": "met",
"details": [
{
"code": "ci_workflows",
"params": {
"count": 1
}
}
],
"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": 0,
"status": "missed",
"details": [],
"max_points": 6.4
},
{
"key": "openssf_scorecard_ci_tests",
"name": "OpenSSF Scorecard: CI-Tests",
"detail": "9 out of 9 merged PRs checked by a CI test -- score normalized to 10",
"points": 20,
"status": "met",
"details": [],
"max_points": 20
}
]
},
{
"key": "documentation",
"band": "moderate",
"name": "Documentation",
"note": null,
"notes": [],
"value": 50,
"inputs": {
"topics": [
"mmio",
"no-std",
"rust",
"rust-crate"
],
"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": "4 topics",
"points": 10,
"status": "met",
"details": [
{
"code": "topics_count",
"params": {
"count": 4
}
}
],
"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": 70,
"weight": 0.16,
"metrics": [
{
"key": "security_posture",
"band": "moderate",
"name": "Security posture",
"note": "Excluded from scoring (no data or not applicable): Packaging, Signed-Releases. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"packaging",
"signed_releases"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 62,
"inputs": {
"source": "openssf_scorecard",
"checks_evaluated": 16,
"scorecard_version": "v5.5.0",
"checks_inconclusive": 2,
"scorecard_aggregate": 6.2
},
"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": "branch protection not enabled on development/release branches",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "ci_tests",
"name": "CI-Tests",
"detail": "9 out of 9 merged PRs checked by a CI test -- score normalized to 10",
"points": 2.5,
"status": "met",
"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 3/4 approved changesets -- score normalized to 7",
"points": 5.2,
"status": "partial",
"details": [],
"max_points": 7.5
},
{
"key": "contributors",
"name": "Contributors",
"detail": "project has 3 contributing companies or organizations -- score normalized to 10",
"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.2,
"status": "partial",
"details": [],
"max_points": 2.5
},
{
"key": "maintained",
"name": "Maintained",
"detail": "30 commit(s) and 1 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": 5,
"status": "met",
"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": "dependency_advisories",
"band": "excellent",
"name": "Dependency advisories",
"note": "Excluded from scoring (no data or not applicable): Indirect dependencies free of known advisories, No advisories left outstanding. Remaining weights renormalized. Matched 6 resolved dependencies against OSV. This repository publishes no package the index resolves, so the repository dependency graph was assessed instead. That graph mixes development and test pins with shipped dependencies, so only the declared runtime dependencies are scored; transitive findings are reported as context and excluded from the score. Reachability is not analyzed.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"indirect_dependencies_free_of_known_advisories",
"no_advisories_left_outstanding"
]
}
},
{
"code": "weights_renormalized",
"params": {}
},
{
"code": "advisories_scope_repository",
"params": {
"assessed": 6
}
},
{
"code": "advisories_repo_graph_caveat",
"params": {}
},
{
"code": "advisories_reachability",
"params": {}
}
],
"value": 100,
"inputs": {
"source": "osv",
"advisories": 0,
"affected_packages": 0,
"assessed_packages": 6,
"unassessed_packages": 0,
"affected_by_severity": "none",
"direct_affected_packages": 0
},
"components": [
{
"key": "direct_dependencies_free_of_known_advisories",
"name": "Direct dependencies free of known advisories",
"detail": "no direct dependency carries a known advisory",
"points": 35,
"status": "met",
"details": [
{
"code": "no_direct_advisories",
"params": {}
}
],
"max_points": 35
},
{
"key": "indirect_dependencies_free_of_known_advisories",
"name": "Indirect dependencies free of known advisories",
"detail": "transitive set not separable from development and test dependencies in this scope",
"points": 0,
"status": "excluded",
"details": [
{
"code": "advisories_scope_not_separable",
"params": {}
}
],
"max_points": 25
},
{
"key": "no_advisories_left_outstanding",
"name": "No advisories left outstanding",
"detail": "no advisory carries a publication date",
"points": 0,
"status": "excluded",
"details": [
{
"code": "advisories_no_publication_date",
"params": {}
}
],
"max_points": 40
}
]
},
{
"key": "malicious_dependencies",
"band": "excellent",
"name": "Malicious dependencies",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"source": "osv",
"meaning": "reported as a malicious package by the OpenSSF corpus; the remedy is removal or moving off the compromised name, never an upgrade of the same artifact. Versions the registry has since pulled are listed but not scored",
"packages": [],
"red_flag": false,
"assessed_packages": 6,
"malicious_packages": 0,
"direct_malicious_packages": 0,
"withdrawn_malicious_packages": 0,
"installable_malicious_packages": 0
},
"components": [
{
"key": "no_dependency_reported_as_a_malicious_package",
"name": "No dependency reported as a malicious package",
"detail": "no dependency is reported as a malicious package",
"points": 100,
"status": "met",
"details": [
{
"code": "no_malicious_dependencies",
"params": {}
}
],
"max_points": 100
}
]
},
{
"key": "high_risk_jurisdiction_exposure",
"band": "excellent",
"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"
],
"review_only_matches": 0,
"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": "moderate",
"name": "AI Readiness",
"value": 57,
"weight": 0,
"metrics": [
{
"key": "ai_agent_context",
"band": "critical",
"name": "Agent context & guidance",
"note": null,
"notes": [],
"value": 27,
"inputs": {
"has_llms_txt": false,
"legible_history_share": 0.5,
"agent_instruction_files": [],
"agent_instruction_max_bytes": null
},
"components": [
{
"key": "agent_instructions",
"name": "Agent instructions",
"detail": "no CLAUDE.md / AGENTS.md / editor rules",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_agent_instructions",
"params": {}
}
],
"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": "39 of 78 human commits state their intent (structured subject or explanatory body)",
"points": 26.7,
"status": "partial",
"details": [
{
"code": "legible_history",
"params": {
"legible": 39,
"sampled": 78
}
}
],
"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": [
"Cargo.lock"
],
"has_dockerfile": false,
"typed_language": true,
"bootstrap_files": [],
"has_devcontainer": false,
"has_linter_config": false,
"typecheck_configs": [],
"agent_commit_share": 0,
"toolchain_manifests": [
"Cargo.toml"
],
"dependency_bot_commit_share": 0.22
},
"components": [
{
"key": "one_command_bootstrap",
"name": "One-command bootstrap",
"detail": "Cargo.toml (toolchain convention, no task runner)",
"points": 12.6,
"status": "partial",
"details": [
{
"code": "toolchain_convention",
"params": {
"files": "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": "lockfile",
"points": 10,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "lockfile"
}
}
],
"max_points": 10
},
{
"key": "demonstrated_agent_practice",
"name": "Demonstrated agent practice",
"detail": "no agent-authored commits among the last 100",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_agent_authored_commits",
"params": {
"sampled": 100
}
}
],
"max_points": 10
},
{
"key": "automated_maintenance",
"name": "Automated maintenance",
"detail": "22 of the last 100 commits are automated dependency updates",
"points": 8,
"status": "met",
"details": [
{
"code": "dependency_bot_commits",
"params": {
"count": 22,
"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": "excellent",
"name": "Code legibility for models",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"primary_language": "Rust",
"largest_source_bytes": 59403,
"source_files_sampled": 9,
"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/9 source files over 60KB",
"points": 55,
"status": "met",
"details": [
{
"code": "oversized_source_files",
"params": {
"kb": 60,
"sampled": 9,
"oversized": 0
}
}
],
"max_points": 55
}
]
}
],
"description": "How well is the repo equipped to be developed and maintained with AI coding agents? An independent, experimental badge — weight 0.0, so it is surfaced on its own and does not affect the overall health score."
}
],
"metrics_version": "1.13.0"
},
"warnings": [
"Star history unavailable: GitHub GraphQL error: Resource not accessible by personal access token",
"deps.dev does not index crates:safe-mmio@0.3.1; advisories assessed against the repository dependency graph instead"
],
"report_type": "repository",
"generated_at": "2026-07-23T11:15:44.467555Z",
"schema_version": "0.27.0",
"badge_url": "https://raw.githubusercontent.com/inspect-software/badges/main/v1/g/google/safe-mmio.svg",
"full_name": "google/safe-mmio",
"license_state": "custom",
"license_spdx": null
}