Informe JSON sin procesar legible por máquina
{
"data": {
"repo": {
"topics": [],
"is_fork": true,
"size_kb": 7332,
"has_wiki": true,
"homepage": null,
"languages": {
"C": 10750,
"Rust": 3543554,
"Shell": 1166
},
"pushed_at": "2026-01-19T15:07:14Z",
"created_at": "2021-07-22T16:27:10Z",
"owner_type": "User",
"updated_at": "2025-02-05T14:14:40Z",
"description": "Aya is an eBPF library for the Rust programming language, built with a focus on developer experience and operability.",
"is_archived": false,
"is_disabled": false,
"license_spdx": "Apache-2.0",
"default_branch": "main",
"license_spdx_raw": "Apache-2.0",
"primary_language": "Rust",
"significant_languages": [
"Rust"
]
},
"owner": {
"blog": "http://www.dtucker.co.uk",
"name": "Dave Tucker",
"type": "User",
"login": "dave-tucker",
"company": "Red Hat",
"location": "UK",
"followers": 313,
"avatar_url": "https://avatars.githubusercontent.com/u/3781777?v=4",
"created_at": "2013-03-06T00:13:02Z",
"is_verified": null,
"public_repos": 217,
"account_age_days": 4890
},
"license": {
"state": "standard",
"spdx_id": "Apache-2.0",
"raw_spdx": "Apache-2.0",
"file_present": true,
"scorecard_found": true,
"profile_has_license": false
},
"activity": {
"releases": [
{
"tag": "aya-v0.11.0",
"kind": "other",
"published_at": "2022-01-07T15:37:49Z"
},
{
"tag": "aya_bpf-v0.0.2",
"kind": "other",
"published_at": "2022-01-07T15:37:46Z"
}
],
"recent_commits": [
{
"oid": "e82253c915fd87af1a5b6a8e657d4860285ba2b2",
"body": "libbpf commit: d4a841a32b04d69194ab5bdac359a51938a206ce\n\nFiles changed:\nM\taya-obj/src/generated/linux_bindings_aarch64.rs\nM\taya-obj/src/generated/linux_bindings_armv7.rs\nM\taya-obj/src/generated/linux_bindings_mips.rs\nM\taya-obj/src/generated/linux_bindings_powerpc64.rs\nM\taya-obj/src/generated/linux_bindings_riscv64.rs\nM\taya-obj/src/generated/linux_bindings_s390x.rs\nM\taya-obj/src/generated/linux_bindings_x86_64.rs\nM\txtask/public-api/aya-obj.txt",
"is_bot": false,
"headline": "chore(aya-obj, aya-ebpf-bindings): Regenerate bindings",
"author_name": "tamird",
"author_login": "tamird",
"committed_at": "2025-02-04T20:06:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2319770f5b167a0f879a685c1132b0cfb89e88d9",
"body": null,
"is_bot": false,
"headline": "codegen: generate additional userspace constants",
"author_name": "Tamir Duberstein",
"author_login": "tamird",
"committed_at": "2025-02-04T19:37:11Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ee7861a6ed38e0b1d5eef56c164e56d78d02f8fa",
"body": "This can't possibly work right if lossy conversion is required.",
"is_bot": false,
"headline": "codegen: avoid lossy string conversion",
"author_name": "Tamir Duberstein",
"author_login": "tamird",
"committed_at": "2025-02-04T19:37:11Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "665d4f20bb53de0aa10545bb897ab73f0661a337",
"body": "When `aya::obj` was migrated to be its own crate `aya-obj`, the `obj`\nalias was created to preserve existing imports that relied on\n`crate::obj`.\n\nThis resulted in 3 ways to import `aya-obj` objects:\n- `use aya_obj::*`\n- `use obj::*`\n- `use crate::obj::*`\n\nThe `obj` alias is now removed to avoid confusion, and all `obj` imports\nare funneled through `aya_obj`.",
"is_bot": false,
"headline": "chore: remove aya_obj -> obj alias",
"author_name": "Tyrone Wu",
"author_login": "ver-nyan",
"committed_at": "2025-02-03T15:30:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "67a0595f8710bce0ce5766d4424e9afeb121e150",
"body": "ci: Update codegen PR template",
"is_bot": false,
"headline": "Merge pull request #1159 from dave-tucker/codegen-pr-message",
"author_name": "Dave Tucker",
"author_login": "dave-tucker",
"committed_at": "2025-02-02T12:42:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "921e45747bd96840b849637468b723ce25e15345",
"body": "aya: Return error messages from netlink",
"is_bot": false,
"headline": "Merge pull request #690 from dave-tucker/netlink-errors",
"author_name": "Dave Tucker",
"author_login": "dave-tucker",
"committed_at": "2025-02-02T12:40:56Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "39cf6c12f27f02c945e70efb24b89c1bc372aac0",
"body": "This returns error strings from netlink since they are more informative\nthan the raw os error. For example:\n\n\"Device or Resource Busy\" vs. \"XDP program already attached\".\n\nSigned-off-by: Dave Tucker <dave@dtucker.co.uk>",
"is_bot": false,
"headline": "feat(aya): Return error messages from netlink",
"author_name": "Dave Tucker",
"author_login": "dave-tucker",
"committed_at": "2025-02-01T21:42:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5d27e62b6a8bc3aeb717aec92b9e0bc71f4b28d1",
"body": "Updated to match the commit message\n\nSigned-off-by: Dave Tucker <dave@dtucker.co.uk>",
"is_bot": false,
"headline": "ci: Update codegen PR template",
"author_name": "Dave Tucker",
"author_login": "dave-tucker",
"committed_at": "2025-02-01T20:27:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0865e08dcf62e801ab670134bbcdd1b170d8cbe8",
"body": "Update libbpf to d4a841a32b04d69194ab5bdac359a51938a206ce",
"is_bot": false,
"headline": "Merge pull request #1158 from aya-rs/codegen",
"author_name": "Dave Tucker",
"author_login": "dave-tucker",
"committed_at": "2025-02-01T20:24:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b686d6a245a8d91b6677102c26c57f67e38d47ca",
"body": "libbpf commit: d4a841a32b04d69194ab5bdac359a51938a206ce\n\nFiles changed:\nM\taya-obj/src/generated/linux_bindings_aarch64.rs\nM\taya-obj/src/generated/linux_bindings_armv7.rs\nM\taya-obj/src/generated/linux_bindings_mips.rs\nM\taya-obj/src/generated/linux_bindings_powerpc64.rs\nM\taya-obj/src/generated/linux_bindings_riscv64.rs\nM\taya-obj/src/generated/linux_bindings_s390x.rs\nM\taya-obj/src/generated/linux_bindings_x86_64.rs\nM\txtask/public-api/aya-obj.txt",
"is_bot": false,
"headline": "chore(aya-obj, aya-ebpf-bindings): Regenerate bindings",
"author_name": "dave-tucker",
"author_login": "dave-tucker",
"committed_at": "2025-02-01T17:10:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5942fe37025a3a58c03f2b4df10e758be0435661",
"body": "ci: Improve Codegen Workflow",
"is_bot": false,
"headline": "Merge pull request #1157 from dave-tucker/codegen-improvements",
"author_name": "Dave Tucker",
"author_login": "dave-tucker",
"committed_at": "2025-02-01T17:06:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "34be19a24d1e8682d7e5ccd1182b93ed9d64b7c6",
"body": "1. Bless public-api changes\n2. (Hopefully) fix the commit message\n\nSigned-off-by: Dave Tucker <dave@dtucker.co.uk>",
"is_bot": false,
"headline": "ci: Improve Codegen Workflow",
"author_name": "Dave Tucker",
"author_login": "dave-tucker",
"committed_at": "2025-02-01T13:53:44Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9ddee3552d47a24ba9b6765edea80c0b7915197d",
"body": "chore(codegen): Add nlmsgerr_attrs",
"is_bot": false,
"headline": "Merge pull request #1156 from dave-tucker/nlmsgerr_attrs",
"author_name": "Dave Tucker",
"author_login": "dave-tucker",
"committed_at": "2025-02-01T13:43:44Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b16ca6f570dd9b3b3a5830a6d084e2a88c04a5a8",
"body": "This is required for nicer netlink error messages\n\nSigned-off-by: Dave Tucker <dave@dtucker.co.uk>",
"is_bot": false,
"headline": "chore(codegen): Add nlmsgerr_attrs",
"author_name": "Dave Tucker",
"author_login": "dave-tucker",
"committed_at": "2025-02-01T13:04:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2f757b2091d28a17c90495ee2955e7f8d1bc5ec5",
"body": "Added MIPS bindings",
"is_bot": false,
"headline": "Merge pull request #482 from ishanjain28/add_mips_support",
"author_name": "Dave Tucker",
"author_login": "dave-tucker",
"committed_at": "2025-01-31T21:00:22Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2eaae09c31add79103331aa551e8f74de86cd037",
"body": "Signed-off-by: Dave Tucker <dave@dtucker.co.uk>",
"is_bot": false,
"headline": "chore(aya-ebpf-cty): Add mips support",
"author_name": "Dave Tucker",
"author_login": "dave-tucker",
"committed_at": "2025-01-31T18:34:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1495a93c45403550d6a1c9f21f3f3e24da1398a5",
"body": "Signed-off-by: Dave Tucker <dave@dtucker.co.uk>",
"is_bot": false,
"headline": "ci: Include mips architecture in tests",
"author_name": "Dave Tucker",
"author_login": "dave-tucker",
"committed_at": "2025-01-31T18:34:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1ccac3c135f280eead50ff18cd4c4340001018c6",
"body": "Signed-off-by: Dave Tucker <dave@dtucker.co.uk>",
"is_bot": false,
"headline": "feat(ebpf): Implement FromPtRegs for mips",
"author_name": "Dave Tucker",
"author_login": "dave-tucker",
"committed_at": "2025-01-31T18:33:59Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3ff609114e9be9ba029072bd9d86ef48beb03b9c",
"body": "Updated `aya-obj/src/generated/mod.rs` and\n`bpf/aya-bpf-bindings/src/lib.rs to use the mips bindings.",
"is_bot": false,
"headline": "feat(aya): Added MIPS bindings",
"author_name": "Ishan Jain",
"author_login": "ishanjain28",
"committed_at": "2025-01-31T18:19:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "66da8742feaf80d1e195e25f0cf715a8cc00012c",
"body": "Update libbpf to 324f3c3846d99c8a1e1384a55591f893f0ae5de4",
"is_bot": false,
"headline": "Merge pull request #1155 from aya-rs/codegen",
"author_name": "Dave Tucker",
"author_login": "dave-tucker",
"committed_at": "2025-01-31T17:47:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "701a9333457ce008440350a9f465fe1f280c6069",
"body": "Update libbpf to 324f3c3846d99c8a1e1384a55591f893f0ae5de4\n\nFiles changed:\nM\taya-obj/src/generated/btf_internal_bindings.rs\nM\taya-obj/src/generated/linux_bindings_aarch64.rs\nM\taya-obj/src/generated/linux_bindings_armv7.rs\nA\taya-obj/src/generated/linux_bindings_mips.rs\nM\taya-obj/src/generated/linux_bi\n[…]\nrs.rs\nM\tebpf/aya-ebpf-bindings/src/powerpc64/bindings.rs\nM\tebpf/aya-ebpf-bindings/src/riscv64/bindings.rs\nM\tebpf/aya-ebpf-bindings/src/s390x/bindings.rs\nM\tebpf/aya-ebpf-bindings/src/x86_64/bindings.rs",
"is_bot": false,
"headline": "[codegen] Update libbpf to 324f3c3846d99c8a1e1384a55591f893f0ae5de4",
"author_name": "dave-tucker",
"author_login": "dave-tucker",
"committed_at": "2025-01-31T17:23:18Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "fdd25cd4346990d6027506ca4ccf6b52eb39bafc",
"body": "chore(codegen): Fix duplicate BPF_F_LINK",
"is_bot": false,
"headline": "Merge pull request #1154 from dave-tucker/fix-codegen",
"author_name": "Dave Tucker",
"author_login": "dave-tucker",
"committed_at": "2025-01-31T17:16:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d92284e4f8951468b24207f266139c1eba369b9c",
"body": "Per the comment added in the code, there are 2 definitions of\nBPF_F_LINK in the kernel headers. Once is in an anonymous enum which\nbindgen will constify, and once is via a #define macro. The values are\nidentical. The fix is to exclude BPF_F_LINK from the list of variables\nin bindgen removing one of the duplicate definitions.\n\nSigned-off-by: Dave Tucker <dave@dtucker.co.uk>",
"is_bot": false,
"headline": "chore(codegen): Fix duplicate BPF_F_LINK",
"author_name": "Dave Tucker",
"author_login": "dave-tucker",
"committed_at": "2025-01-31T16:48:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b960fd27b3321b5ff3d1fcb748d495ace4059624",
"body": "ci: Install libc6-dev-mips-cross for codegen",
"is_bot": false,
"headline": "Merge pull request #1152 from dave-tucker/codegen-mips",
"author_name": "Dave Tucker",
"author_login": "dave-tucker",
"committed_at": "2025-01-31T16:03:45Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3b41205059366f79f50481a0e3a607602c3f8092",
"body": "Signed-off-by: Dave Tucker <dave@dtucker.co.uk>",
"is_bot": false,
"headline": "ci: Install libc6-dev-mips-cross for codegen",
"author_name": "Dave Tucker",
"author_login": "dave-tucker",
"committed_at": "2025-01-31T16:02:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fd30e2e809f3704ef703b8b31e15f6a64987eba8",
"body": "chore(xtask): Add bindings for bpf_task_fd_type",
"is_bot": false,
"headline": "Merge pull request #1151 from dave-tucker/task-fd-query",
"author_name": "Dave Tucker",
"author_login": "dave-tucker",
"committed_at": "2025-01-31T15:47:44Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "74fad66599df47eeaeaf37e37406d52b328e78cb",
"body": "Signed-off-by: Dave Tucker <dave@dtucker.co.uk>",
"is_bot": false,
"headline": "chore(xtask): Add bindings for bpf_task_fd_type",
"author_name": "Dave Tucker",
"author_login": "dave-tucker",
"committed_at": "2025-01-31T15:47:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "16ca7256fc6d0d3a2facb469301762110d1dcfeb",
"body": "chore(xtask): Add mips to codegen",
"is_bot": false,
"headline": "Merge pull request #1150 from dave-tucker/mips-codegen",
"author_name": "Dave Tucker",
"author_login": "dave-tucker",
"committed_at": "2025-01-31T15:45:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "91fb73092e186f4aabcdaf6d338b3304ba9b1bc0",
"body": "This will generate bindings for mips the next time that the codegen job\nis run.\n\nSigned-off-by: Ishan Jain <contact@ishanjain.me>\nCo-authored-by: Dave Tucker <dave@dtucker.co.uk>",
"is_bot": false,
"headline": "chore(xtask): Add mips to codegen",
"author_name": "Ishan Jain",
"author_login": "ishanjain28",
"committed_at": "2025-01-31T15:05:16Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0429ed2fa299636428b65573456cffe0aac2beca",
"body": "```\nerror: manual implementation of `ok`\n --> aya/src/util.rs:261:28\n |\n261 | let addr = match u64::from_str_radix(addr, 16) {\n | ____________________________^\n262 | | Ok(addr) => Some(addr),\n263 | | Err(ParseIntError { .. }) => None\n[…]\nme(err),\n83 | | })\n | |_________^ help: replace with: `result.err()`\n |\n = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#manual_ok_err\n```",
"is_bot": false,
"headline": "Appease clippy",
"author_name": "Tamir Duberstein",
"author_login": "tamird",
"committed_at": "2025-01-30T11:34:01Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "2907bc678d328416538f0a1abf74bb1c7d28664b",
"body": "Remove gcc-multilib which doesn't exist on arm64.",
"is_bot": false,
"headline": "ci: add ARM runner",
"author_name": "Tamir Duberstein",
"author_login": "tamird",
"committed_at": "2025-01-29T14:56:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e46fae745959be3406e5db9e3a1949a6c0bf952a",
"body": null,
"is_bot": false,
"headline": "Update public-api to 0.43.0",
"author_name": "Tamir Duberstein",
"author_login": "tamird",
"committed_at": "2025-01-27T10:48:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1fe12b99907dda6553a6069fa462d6241d3fa171",
"body": "bpf_target_arch should be riscv64, but target triple starts with riscv64gc (and possibly riscv64 followed by any combination of extensions).",
"is_bot": false,
"headline": "Fix aya-ebpf-* riscv64 build (#1139)",
"author_name": "Eric Long",
"author_login": "hack3ric",
"committed_at": "2025-01-22T08:03:55Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "29b821376e077e1a9b6c77b5d5f09e2a048b862d",
"body": null,
"is_bot": false,
"headline": "public-api: regenerate",
"author_name": "tamird",
"author_login": "tamird",
"committed_at": "2025-01-15T11:24:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "356cf45914408b1372d33f27a20ebd3ef75759ca",
"body": "This uses hashbrown instead of std because the latter relies on Borrow\nwhich requires a reference; hashbrown's Equivalent is more flexible.",
"is_bot": false,
"headline": "Use Set (instead of Map) to hold links",
"author_name": "Tamir Duberstein",
"author_login": "tamird",
"committed_at": "2025-01-14T14:40:00Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "69144a977ef33613610f0f7b9a94e432da3a2d59",
"body": "```\nerror: called `Iterator::last` on a `DoubleEndedIterator`; this will needlessly iterate the entire iterator\n --> aya/src/programs/uprobe.rs:282:64\n |\n282 | let path = line.split(|b| b.is_ascii_whitespace()).last()?;\n | ^^^^^^ help: try: `next_back()`\n |\n = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#double_ended_iterator_last\n```",
"is_bot": false,
"headline": "Appease clippy",
"author_name": "Tamir Duberstein",
"author_login": "tamird",
"committed_at": "2025-01-11T15:47:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "114e7a69069e610f5bdd840dd2f0d4d5de5b0694",
"body": null,
"is_bot": false,
"headline": "Merge pull request #1133 from ajwerner/uprobe-cookie",
"author_name": "ajwerner",
"author_login": "ajwerner",
"committed_at": "2025-01-11T01:52:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "628b7fb0221321aa0cc649cd738c449a7dbb0108",
"body": "Fixes #1132.\n\nNote that this change does not add support in the public API for kprobes\nor tracepoints, but it's a trivial matter of plumbing.\n\nAlong the way, the Uprobe::attach API is cleaned up to make the\nattachment location more coherent. The logic being: if we're going to be\nbreaking the API anyway, may as well clean it up a bit.\n\nFurthermore, the aya::sys::bpf_link_attach function is cleaned up by\nproperly modeling the the union in the final field with a rust enum.",
"is_bot": false,
"headline": "aya::programs::uprobe: add support for cookies",
"author_name": "Andrew Werner",
"author_login": "ajwerner",
"committed_at": "2025-01-10T16:58:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f34d355d7d70f8f9ef0f0a01a4338e50cf0080b4",
"body": "Provide an `arg()` method in `RawTracepointArgs` wrapper of\n`bpf_raw_tracepoint_args` and also in `RawTracepointContext`, so\nit's directly available in raw tracepoint programs.\n\nThe methods and traits implemented here are unsafe. There is no\nway to reliably check the number of available arguments, so\nrequesting a non-existing one leads to undefined behavior.",
"is_bot": false,
"headline": "bpf: Handle raw tracepoint arguments",
"author_name": "Mike Rostecki",
"author_login": "vadorovsky",
"committed_at": "2025-01-07T17:27:56Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "28a28c9872f72d77f7d524746315e7442b88265a",
"body": "See\nhttps://docs.rs/bindgen/latest/bindgen/struct.Builder.html#method.clang_macro_fallback.",
"is_bot": false,
"headline": "aya-tool: enable clang_macro_fallback",
"author_name": "Tamir Duberstein",
"author_login": "tamird",
"committed_at": "2025-01-07T16:45:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "be6370c7cddfa40afdccc6f408724f7ee85977ff",
"body": null,
"is_bot": false,
"headline": "aya-tool: extract common helper",
"author_name": "Tamir Duberstein",
"author_login": "tamird",
"committed_at": "2025-01-07T16:45:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1355a2094feb539b51983bcbba022e6ffb337071",
"body": "…-actions-4fb87efe6a",
"is_bot": true,
"headline": "Merge pull request #1126 from aya-rs/dependabot/github_actions/github…",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2025-01-01T16:39:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e8b8467c187bab029d0a71352ca7fa18924ac88b",
"body": "Bumps the github-actions group with 1 update: [DavidAnson/markdownlint-cli2-action](https://github.com/davidanson/markdownlint-cli2-action).\n\n\nUpdates `DavidAnson/markdownlint-cli2-action` from 18 to 19\n- [Release notes](https://github.com/davidanson/markdownlint-cli2-action/releases)\n- [Commits](ht\n[…]\nson/markdownlint-cli2-action\n dependency-type: direct:production\n update-type: version-update:semver-major\n dependency-group: github-actions\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>",
"is_bot": true,
"headline": "build(deps): bump DavidAnson/markdownlint-cli2-action",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2025-01-01T16:19:23Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "f26ccde13687329ab9c827cbf75aa2ee60ae41ac",
"body": "Seems 6.10 is now being marked `+bpo`.\n\nImprove error handling while I'm here.",
"is_bot": false,
"headline": "Allow `+bpo` kernels",
"author_name": "Tamir Duberstein",
"author_login": "tamird",
"committed_at": "2024-12-30T16:46:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "df053f095b67f8984ae31fd0ca1042f4e38c3378",
"body": "* docs: update docs for load to mention include_bytes_aligned\r\n\r\nThis macro is required if you are bundling programs statically into your binary, which is not an uncommon thing to do.\r\n\r\nThis change updates the documentation for the load function to mention this macro and the need for alignment.",
"is_bot": false,
"headline": "docs: update docs for load to mention include_bytes_aligned (#1119)",
"author_name": "Noah Kennedy",
"author_login": "Noah-Kennedy",
"committed_at": "2024-12-29T21:52:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "78ee9a463429a1eda706f8974f965892ad86a6dd",
"body": "Use native C types to avoid platform-dependent conversions.",
"is_bot": false,
"headline": "Avoid useless conversions",
"author_name": "Tamir Duberstein",
"author_login": "tamird",
"committed_at": "2024-12-27T15:27:41Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4257643354263d69ed02b1e9385675560927da79",
"body": null,
"is_bot": false,
"headline": "Clean up C type imports",
"author_name": "Tamir Duberstein",
"author_login": "tamird",
"committed_at": "2024-12-27T15:27:41Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "41706d74e44f2c3589c28a7149beb4db185594f2",
"body": null,
"is_bot": false,
"headline": "Narrow clippy allowances",
"author_name": "Tamir Duberstein",
"author_login": "tamird",
"committed_at": "2024-12-27T14:47:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1bf6a386197d019c0a548fdf488c9edf6c67c7e1",
"body": null,
"is_bot": false,
"headline": "Simplify `parse_param`",
"author_name": "Tamir Duberstein",
"author_login": "tamird",
"committed_at": "2024-12-27T14:47:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4f0559f2afeca1dfae120bacf1742d58268bca37",
"body": null,
"is_bot": false,
"headline": "chore: Fix cippy errors",
"author_name": "Michal Rostecki",
"author_login": "vadorovsky",
"committed_at": "2024-12-27T13:34:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "aea3efecd5b9f286911d85216465be49ce60b8ef",
"body": "…5f554572",
"is_bot": true,
"headline": "Merge pull request #1120 from aya-rs/dependabot/cargo/cargo-crates-f7…",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2024-12-23T15:05:27Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "af4254bc57b9d0bf0031d0ad9d533ba162019e67",
"body": "---\nupdated-dependencies:\n- dependency-name: octorust\n dependency-type: direct:production\n dependency-group: cargo-crates\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>",
"is_bot": true,
"headline": "build(deps): update octorust requirement in the cargo-crates group",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2024-12-23T13:11:01Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d1457acc6d2c98d163e4f7694fefc73d5276b3eb",
"body": "We're seeing 429 from Github trying to download gen_init_cpio, so cache\nit using actions cache. Since I'm here add this for kernel images as\nwell to save time waiting on slow Debian servers.",
"is_bot": false,
"headline": "ci: cache downloads",
"author_name": "Tamir Duberstein",
"author_login": "tamird",
"committed_at": "2024-12-23T05:43:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cc2da4a2a4148e6059b8dc02e8fa4bbd2026fc3a",
"body": "The raw endpoint[0] now[1] seems to return HTTP 429 on the first request\nand unauthenticated API limits are exceeded after one request (so one of\nubuntu/macos builders fails). Hopefully this works with authentication.\n\nLink: https://raw.githubusercontent.com/torvalds/linux/refs/heads/master/usr/gen_init_cpio.c [0]\nLink: https://github.com/orgs/community/discussions/146957 [1]",
"is_bot": false,
"headline": "ci: download gen_init_cpio with authentication",
"author_name": "Tamir Duberstein",
"author_login": "tamird",
"committed_at": "2024-12-13T00:19:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1dfcfbcf90d4b01ec56c4bc236577857c1fb6753",
"body": "…63383a63",
"is_bot": true,
"headline": "Merge pull request #1113 from aya-rs/dependabot/cargo/cargo-crates-ab…",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2024-12-09T16:20:56Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4f3ea551f32522719d228d282faec37a3ea1b061",
"body": "Updates the requirements on [bindgen](https://github.com/rust-lang/rust-bindgen) to permit the latest version.\n\nUpdates `bindgen` to 0.70.1\n- [Release notes](https://github.com/rust-lang/rust-bindgen/releases)\n- [Changelog](https://github.com/rust-lang/rust-bindgen/blob/main/CHANGELOG.md)\n- [Commits\n[…]\n/v0.70.0...v0.70.1)\n\n---\nupdated-dependencies:\n- dependency-name: bindgen\n dependency-type: direct:production\n dependency-group: cargo-crates\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>",
"is_bot": true,
"headline": "build(deps): update bindgen requirement in the cargo-crates group",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2024-12-09T13:36:35Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "5a43bedc0180ba41854e6c23f0476c2cbeb1e2bd",
"body": "proc-macro-error is unmaintained.",
"is_bot": false,
"headline": "Replace proc-macro-error with proc-macro2-diagnostics",
"author_name": "Tamir Duberstein",
"author_login": "tamird",
"committed_at": "2024-12-03T16:29:01Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "dae394e199878283475a8cc5d1ca0ab82db305db",
"body": "The presence of this version specification causes cargo-smart-release to\ntrip on the circular dependency.\n\nFixes #1050.",
"is_bot": false,
"headline": "aya-ebpf-macros: remove aya-ebpf version",
"author_name": "Tamir Duberstein",
"author_login": "tamird",
"committed_at": "2024-12-03T13:27:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3d8cb08b7f067a5d57a7268d0b53131b527f4583",
"body": "This is required in Rust 1.80 at least.",
"is_bot": false,
"headline": "aya-build: add explicit irrefutable pattern",
"author_name": "Tamir Duberstein",
"author_login": "tamird",
"committed_at": "2024-12-01T22:25:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "015c0df0f41f9aa20556dadd282899afb2e2123d",
"body": "This is needed before Rust 1.81.",
"is_bot": false,
"headline": "aya-build: enable anyhow/std",
"author_name": "Tamir Duberstein",
"author_login": "tamird",
"committed_at": "2024-12-01T22:25:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6970353b58852f8732a8d37f1b281662aab8a11d",
"body": null,
"is_bot": false,
"headline": "aya-build: add description",
"author_name": "Tamir Duberstein",
"author_login": "tamird",
"committed_at": "2024-12-01T22:25:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b01bc3f49be4e1099601a8f682bc52b54eb1f960",
"body": "Something of an experiment.",
"is_bot": false,
"headline": "Use Result in integration-test's build script",
"author_name": "Tamir Duberstein",
"author_login": "tamird",
"committed_at": "2024-12-01T08:07:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2b2af44915166f1e942daf6598072aeea27f1ba5",
"body": "We'll use this in the template and book to avoid duplicating all the\ncode.",
"is_bot": false,
"headline": "Extract aya-build for building eBPF crates",
"author_name": "Tamir Duberstein",
"author_login": "tamird",
"committed_at": "2024-12-01T08:07:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e0c4948e36f09677048288883579150fdff7c761",
"body": null,
"is_bot": false,
"headline": "Extract integration-common for shared types",
"author_name": "Tamir Duberstein",
"author_login": "tamird",
"committed_at": "2024-12-01T08:06:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c5172def752e82162a2bdf5c9c600cb3965391ee",
"body": null,
"is_bot": false,
"headline": "Avoid reading env needlessly",
"author_name": "Tamir Duberstein",
"author_login": "tamird",
"committed_at": "2024-11-30T12:44:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "806783c0fcece545476ffbb3f7e66bb601d99318",
"body": "Centralize the knowledge in build.rs instead.",
"is_bot": false,
"headline": "Remove integration-ebp/rust-toolchain",
"author_name": "Tamir Duberstein",
"author_login": "tamird",
"committed_at": "2024-11-30T12:44:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fd00b39f09fc082a7fe5988c5ebc61d6380dbba6",
"body": "Unwinding gives us more information, so we shouldn't disable it\nglobally. It is already disabled for BPF targets via the target configs\nin rustc itself.\n\nThis complicates the clippy invocation somewhat, so put it in a shell\nscript for developer as well as CI use.",
"is_bot": false,
"headline": "Enable unwinding in userspace",
"author_name": "Tamir Duberstein",
"author_login": "tamird",
"committed_at": "2024-11-30T12:44:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1de7e728b64c1fc706b1802b4eb5d2642570a1f3",
"body": "The const-assert crate doesn't even compile with stable rust, so we\nshouldn't depend on it. Instead we replicate its functionality behind\ncfg(unstable) which is set at build time based on the toolchain in use.",
"is_bot": false,
"headline": "Allow aya-ebpf to clippy with stable rust",
"author_name": "Tamir Duberstein",
"author_login": "tamird",
"committed_at": "2024-11-30T12:44:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "964d63ab3777d330e5875523686d78cf28585030",
"body": "The panic has been fixed.",
"is_bot": false,
"headline": "Remove stale comment",
"author_name": "Tamir Duberstein",
"author_login": "tamird",
"committed_at": "2024-11-30T12:44:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "09eefd366f7410c2f4744bb2bae533d9ce92ae20",
"body": null,
"is_bot": false,
"headline": "Remove long-dead travis config",
"author_name": "Tamir Duberstein",
"author_login": "tamird",
"committed_at": "2024-11-30T12:44:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d92fc95c39773f08d8dbf95c21cd8c6d11bafa03",
"body": "We aren't actually building for these targets, we only use this to pick\nthe set of generated definitions to use in BPF which is the true target.",
"is_bot": false,
"headline": "ci: remove cross toolchain",
"author_name": "Tamir Duberstein",
"author_login": "tamird",
"committed_at": "2024-11-27T17:34:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0eb6d8c09e6738e72bb14dbd59564ceae0918c5b",
"body": "This reverts commit c6ec4f9b80cb2b428b4692b8cf1cb252c8c46daf.",
"is_bot": false,
"headline": "Revert \"chore: Pin `libc` to `0.2.163`\"",
"author_name": "Tamir Duberstein",
"author_login": "tamird",
"committed_at": "2024-11-27T04:12:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0bf67c3ce5c1f4a16089af42c37abc6b2b8cb6f9",
"body": "…849d205f",
"is_bot": true,
"headline": "Merge pull request #1095 from aya-rs/dependabot/cargo/cargo-crates-ed…",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2024-11-26T17:03:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5ab67dce0881690b705eed2e010bcc0fae169122",
"body": "These are added in cargo_metadata 0.19.0.",
"is_bot": false,
"headline": "Use TargetKind enum and Target::is_proc_macro",
"author_name": "Tamir Duberstein",
"author_login": "tamird",
"committed_at": "2024-11-26T16:51:27Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ea139050cfae61ae274cc932612a43044c84e2ef",
"body": "Updates the requirements on [cargo_metadata](https://github.com/oli-obk/cargo_metadata) and [public-api](https://github.com/cargo-public-api/cargo-public-api) to permit the latest version.\n\nUpdates `cargo_metadata` to 0.18.1\n- [Release notes](https://github.com/oli-obk/cargo_metadata/releases)\n- [Ch\n[…]\nproduction\n dependency-group: cargo-crates\n- dependency-name: public-api\n dependency-type: direct:production\n dependency-group: cargo-crates\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>",
"is_bot": true,
"headline": "build(deps): bump the cargo-crates group with 2 updates",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2024-11-26T16:45:34Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "c6ec4f9b80cb2b428b4692b8cf1cb252c8c46daf",
"body": "`0.2.164` and `0.2.165` are affected by rust-lang/libc#4149. Pin the\nlast working version until a proper fix is released.",
"is_bot": false,
"headline": "chore: Pin `libc` to `0.2.163`",
"author_name": "Michal Rostecki",
"author_login": "vadorovsky",
"committed_at": "2024-11-26T16:45:25Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "119049f2a21045b4f990523ccc95265ef4233d41",
"body": null,
"is_bot": false,
"headline": "Define `{detach,take_link}` in macro when possible",
"author_name": "Tamir Duberstein",
"author_login": "tamird",
"committed_at": "2024-11-24T17:25:55Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "85c73af1feb8d0b227ca2e7b61b8542c4eb8b918",
"body": "Don't mix the tenses.",
"is_bot": false,
"headline": "doc(aya): Improve the description of `take_link` methods",
"author_name": "Michal Rostecki",
"author_login": "vadorovsky",
"committed_at": "2024-11-24T15:27:44Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "bf2164c92f5280e8b9c7178b9cbf338931ce778d",
"body": "BPF iterators[0] are a way to dump kernel data into user-space and an\nalternative to `/proc` filesystem.\n\nThis change adds support for BPF iterators on the user-space side. It\nprovides a possibility to retrieve the outputs of BPF iterator programs\nboth from sync and async Rust code.\n\n[0] https://docs.kernel.org/bpf/bpf_iterators.html",
"is_bot": false,
"headline": "feat(aya): Add iterator program type",
"author_name": "Michal Rostecki",
"author_login": "vadorovsky",
"committed_at": "2024-11-24T15:27:44Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c81f5e475ef0f04a1604add4feb0e7437f8ec0c1",
"body": "Introducing Aya Guru on Gurubase.io\r\n\r\nSigned-off-by: Kursat Aktas <kursat.ce@gmail.com>",
"is_bot": false,
"headline": "Introducing Aya Guru on Gurubase.io (#1085)",
"author_name": "Kursat Aktas",
"author_login": "kursataktas",
"committed_at": "2024-11-22T13:05:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a77db17ec8dac1ac75c0d0175a1e25749acb44b3",
"body": null,
"is_bot": false,
"headline": "cargo fmt",
"author_name": "Tamir Duberstein",
"author_login": "tamird",
"committed_at": "2024-11-21T19:52:56Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a16755089bb642ded73a592ac25c6e21771b5792",
"body": "Remove the warning log altogether; either it's an error or it isn't.",
"is_bot": false,
"headline": "Avoid warning with `allow_unsupported_maps`",
"author_name": "banditopazzo",
"author_login": "banditopazzo",
"committed_at": "2024-11-21T15:47:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0b58d3eb6d399c812181d2d64de32cde1b44f6eb",
"body": "The `bpf_strncmp` helper allows for better string comparison in eBPF\nprograms.\n\nAdded in https://github.com/torvalds/linux/commit/c5fb19937455095573a19.",
"is_bot": false,
"headline": "bpf: Add `bpf_strncmp` helper",
"author_name": "Michal Rostecki",
"author_login": "vadorovsky",
"committed_at": "2024-11-21T11:39:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2e4650e5a5f443239c3c258aebcb56bb0d910194",
"body": null,
"is_bot": false,
"headline": "integration: alphabetize",
"author_name": "Tamir Duberstein",
"author_login": "tamird",
"committed_at": "2024-11-21T11:39:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9e3de444ecef2856fe0f37c3306e4b391f076fe7",
"body": "Bumps the github-actions group with 1 update: [DavidAnson/markdownlint-cli2-action](https://github.com/davidanson/markdownlint-cli2-action).\n\n\nUpdates `DavidAnson/markdownlint-cli2-action` from 17 to 18\n- [Release notes](https://github.com/davidanson/markdownlint-cli2-action/releases)\n- [Commits](ht\n[…]\nson/markdownlint-cli2-action\n dependency-type: direct:production\n update-type: version-update:semver-major\n dependency-group: github-actions\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>",
"is_bot": true,
"headline": "build(deps): bump DavidAnson/markdownlint-cli2-action",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2024-11-20T15:07:24Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "68ec40fe1241aeb2046b9527dda239d1c582d4de",
"body": "…11d6c133",
"is_bot": true,
"headline": "Merge pull request #1090 from aya-rs/dependabot/cargo/cargo-crates-16…",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2024-11-18T16:05:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f20a09d053252d082fb8c0b5f0fd9f1f88dc19a3",
"body": "Updates the requirements on [public-api](https://github.com/cargo-public-api/cargo-public-api) to permit the latest version.\n\nUpdates `public-api` to 0.40.0\n- [Release notes](https://github.com/cargo-public-api/cargo-public-api/releases)\n- [Changelog](https://github.com/cargo-public-api/cargo-public\n[…]\nlic-api-v0.40.0)\n\n---\nupdated-dependencies:\n- dependency-name: public-api\n dependency-type: direct:production\n dependency-group: cargo-crates\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>",
"is_bot": true,
"headline": "build(deps): update public-api requirement in the cargo-crates group",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2024-11-18T15:54:13Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "e423fce58f2fb0ee3b394698ee48d6d388ddc5af",
"body": null,
"is_bot": false,
"headline": "public-api: regenerate",
"author_name": "tamird",
"author_login": "tamird",
"committed_at": "2024-11-18T10:22:38Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5075adc01d03786ea3b168bbce6f500391b020e5",
"body": null,
"is_bot": false,
"headline": "public-api: regenerate",
"author_name": "tamird",
"author_login": "tamird",
"committed_at": "2024-11-13T11:33:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "08becfdfa8d54b5809d797c2756f6e1d5f36bbca",
"body": "This is annoying and I'd like to stop doing it.",
"is_bot": false,
"headline": "ci: automatically open PRs to update public API",
"author_name": "Tamir Duberstein",
"author_login": "tamird",
"committed_at": "2024-11-13T11:27:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "103eed13959fb4e3ed98783de3002ddac2a67b2f",
"body": "…b59a9473",
"is_bot": true,
"headline": "Merge pull request #1079 from aya-rs/dependabot/cargo/cargo-crates-bf…",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2024-11-11T20:00:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e95a54f59388228c0551c9c66be0d436b45d2c71",
"body": "This removes the fake std module in aya-obj which is no longer needed as\nthiserror now properly supports no_std.\n\nSigned-off-by: Tamir Duberstein <tamird@gmail.com>",
"is_bot": false,
"headline": "build(deps): update thiserror to 2.0.3",
"author_name": "Tamir Duberstein",
"author_login": "tamird",
"committed_at": "2024-11-11T19:38:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fbbc2ec0509fe50251a82144a7dd7826d13708e2",
"body": "Let's get off the treadmill.\n\nSwitch (almost) all wget usages to curl.",
"is_bot": false,
"headline": "ci: automatically download latest kernel revs",
"author_name": "Tamir Duberstein",
"author_login": "tamird",
"committed_at": "2024-11-11T19:36:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e3bfeb9dd65bd75bb50d111160ebe5e092f514f4",
"body": null,
"is_bot": false,
"headline": "Allow QEMU to fall back",
"author_name": "Tamir Duberstein",
"author_login": "tamird",
"committed_at": "2024-11-04T19:53:50Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "05623a0eb7ff0f8e20b1824bd67319470ee3bef7",
"body": "…8699da63",
"is_bot": true,
"headline": "Merge pull request #1076 from aya-rs/dependabot/cargo/cargo-crates-c0…",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2024-11-04T18:25:42Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e67a21265b5a84de95da37d07ebd9506355e5314",
"body": "Updates the requirements on [which](https://github.com/harryfei/which-rs) to permit the latest version.\n\nUpdates `which` to 6.0.3\n- [Release notes](https://github.com/harryfei/which-rs/releases)\n- [Changelog](https://github.com/harryfei/which-rs/blob/master/CHANGELOG.md)\n- [Commits](https://github.c\n[…]\nompare/6.0.0...6.0.3)\n\n---\nupdated-dependencies:\n- dependency-name: which\n dependency-type: direct:production\n dependency-group: cargo-crates\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>",
"is_bot": true,
"headline": "build(deps): update which requirement in the cargo-crates group",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2024-11-04T13:14:26Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "2791badd947e3abb459e5339a23a66d0a56c42d0",
"body": "Signed-off-by: Dave Tucker <dave@dtucker.co.uk>",
"is_bot": false,
"headline": "Release aya v0.13.1",
"author_name": "Dave Tucker",
"author_login": "dave-tucker",
"committed_at": "2024-11-01T15:30:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c6a34cade195d682e1eece5b71e3ab48e48f3cda",
"body": "Signed-off-by: Dave Tucker <dave@dtucker.co.uk>",
"is_bot": false,
"headline": "Release aya-obj v0.2.1",
"author_name": "Dave Tucker",
"author_login": "dave-tucker",
"committed_at": "2024-11-01T15:29:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b2ac9fe85db6c25d0b8155a75a2df96a80a19811",
"body": "fix(aya): BSS Sections must be filled with zeros",
"is_bot": false,
"headline": "Merge pull request #1073 from dave-tucker/reloc-bug",
"author_name": "Dave Tucker",
"author_login": "dave-tucker",
"committed_at": "2024-11-01T15:21:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ca0c32d1076af81349a52235a4b6fb3937a697b3",
"body": "The loader should fill bss maps with zeros according to the size of the\nELF section.\nFailure to do so yields weird verifier messages as follows:\n\n```\ncannot access ptr member ops with moff 0 in struct bpf_map with off 0 size 4\n```\n\nReference to this in the cilium/ebpf code is here [1].\nI could not find a reference in libbpf.\n\n1: https://github.com/cilium/ebpf/blob/d0c8fc19376a9276cf5310c288d1eae99ed39eb3/elf_reader.go#L1159-L1165\n\nSigned-off-by: Dave Tucker <dave@dtucker.co.uk>",
"is_bot": false,
"headline": "fix(aya): Fill bss maps with zeros",
"author_name": "Dave Tucker",
"author_login": "dave-tucker",
"committed_at": "2024-11-01T12:12:33Z",
"body_truncated": false,
"is_coding_agent": false
}
],
"releases_count": 2,
"commits_last_year": 0,
"latest_release_at": "2022-01-07T15:37:49Z",
"latest_release_tag": "aya-v0.11.0",
"releases_from_tags": false,
"days_since_last_push": 187,
"active_weeks_last_year": 0,
"days_since_latest_release": 1660,
"mean_days_between_releases": 0
},
"community": {
"has_readme": false,
"has_license": false,
"has_description": false,
"has_contributing": false,
"health_percentage": null,
"has_issue_template": false,
"has_code_of_conduct": false,
"has_pull_request_template": false
},
"ecosystem": {
"packages": [
{
"name": "aya",
"exists": true,
"license": "MIT OR Apache-2.0",
"keywords": [
"bpf",
"ebpf",
"kernel",
"linux"
],
"ecosystem": "crates",
"matches_repo": false,
"registry_url": "https://crates.io/crates/aya",
"is_deprecated": false,
"latest_version": "0.14.0",
"repository_url": "https://github.com/aya-rs/aya",
"versions_count": 14,
"total_downloads": 2853469,
"dependents_count": null,
"deprecation_note": null,
"maintainers_count": null,
"monthly_downloads": 340323,
"first_published_at": "2021-06-15T07:40:23.601509Z",
"latest_published_at": "2026-06-24T17:54:27.287705Z",
"latest_version_yanked": false,
"days_since_latest_publish": 31
},
{
"name": "init",
"exists": true,
"license": "MIT/Apache-2.0",
"keywords": [
"init"
],
"ecosystem": "crates",
"matches_repo": false,
"registry_url": "https://crates.io/crates/init",
"is_deprecated": false,
"latest_version": "0.2.0",
"repository_url": "https://github.com/mehcode/init-rs/tree/master/init",
"versions_count": 3,
"total_downloads": 6310,
"dependents_count": null,
"deprecation_note": null,
"maintainers_count": null,
"monthly_downloads": 18,
"first_published_at": "2017-02-14T08:59:09.014179Z",
"latest_published_at": "2017-02-15T08:47:45.576539Z",
"latest_version_yanked": false,
"days_since_latest_publish": 3447
},
{
"name": "xtask",
"exists": true,
"license": "MIT OR Apache-2.0",
"keywords": [
"automation",
"codesign",
"macos",
"release",
"xtask",
"command-line-utilities",
"development-tools::build-utils"
],
"ecosystem": "crates",
"matches_repo": false,
"registry_url": "https://crates.io/crates/xtask",
"is_deprecated": false,
"latest_version": "0.1.4",
"repository_url": "https://github.com/arcboxlabs/xtask",
"versions_count": 5,
"total_downloads": 580,
"dependents_count": null,
"deprecation_note": null,
"maintainers_count": null,
"monthly_downloads": 193,
"first_published_at": "2026-06-24T11:01:25.012607Z",
"latest_published_at": "2026-06-30T09:55:36.509458Z",
"latest_version_yanked": false,
"days_since_latest_publish": 25
},
{
"name": "aya-log",
"exists": true,
"license": "MIT OR Apache-2.0",
"keywords": [
"bpf",
"ebpf",
"log",
"logging"
],
"ecosystem": "crates",
"matches_repo": false,
"registry_url": "https://crates.io/crates/aya-log",
"is_deprecated": false,
"latest_version": "0.3.0",
"repository_url": "https://github.com/aya-rs/aya",
"versions_count": 11,
"total_downloads": 798164,
"dependents_count": null,
"deprecation_note": null,
"maintainers_count": null,
"monthly_downloads": 110026,
"first_published_at": "2021-10-15T09:56:25.807699Z",
"latest_published_at": "2026-06-24T17:56:03.955057Z",
"latest_version_yanked": false,
"days_since_latest_publish": 31
},
{
"name": "aya-obj",
"exists": true,
"license": "MIT OR Apache-2.0",
"keywords": [
"bpf",
"btf",
"ebpf",
"elf",
"object"
],
"ecosystem": "crates",
"matches_repo": false,
"registry_url": "https://crates.io/crates/aya-obj",
"is_deprecated": false,
"latest_version": "0.3.0",
"repository_url": "https://github.com/aya-rs/aya",
"versions_count": 6,
"total_downloads": 2771145,
"dependents_count": null,
"deprecation_note": null,
"maintainers_count": null,
"monthly_downloads": 339317,
"first_published_at": "2024-02-28T12:15:04.202948Z",
"latest_published_at": "2026-06-24T17:51:17.549090Z",
"latest_version_yanked": false,
"days_since_latest_publish": 31
},
{
"name": "aya-build",
"exists": true,
"license": "MIT OR Apache-2.0",
"keywords": [],
"ecosystem": "crates",
"matches_repo": false,
"registry_url": "https://crates.io/crates/aya-build",
"is_deprecated": false,
"latest_version": "0.2.0",
"repository_url": "https://github.com/aya-rs/aya",
"versions_count": 5,
"total_downloads": 409371,
"dependents_count": null,
"deprecation_note": null,
"maintainers_count": null,
"monthly_downloads": 76861,
"first_published_at": "2024-12-01T21:22:11.277132Z",
"latest_published_at": "2026-06-24T17:54:42.754895Z",
"latest_version_yanked": false,
"days_since_latest_publish": 31
},
{
"name": "aya-log-common",
"exists": true,
"license": "MIT OR Apache-2.0",
"keywords": [
"bpf",
"ebpf",
"log",
"logging"
],
"ecosystem": "crates",
"matches_repo": false,
"registry_url": "https://crates.io/crates/aya-log-common",
"is_deprecated": false,
"latest_version": "0.2.0",
"repository_url": "https://github.com/aya-rs/aya",
"versions_count": 15,
"total_downloads": 951981,
"dependents_count": null,
"deprecation_note": null,
"maintainers_count": null,
"monthly_downloads": 120989,
"first_published_at": "2021-10-15T09:52:23.769315Z",
"latest_published_at": "2026-06-24T17:55:48.283584Z",
"latest_version_yanked": false,
"days_since_latest_publish": 31
},
{
"name": "aya-ebpf",
"exists": true,
"license": "MIT OR Apache-2.0",
"keywords": [],
"ecosystem": "crates",
"matches_repo": false,
"registry_url": "https://crates.io/crates/aya-ebpf",
"is_deprecated": false,
"latest_version": "0.2.1",
"repository_url": "https://github.com/aya-rs/aya",
"versions_count": 5,
"total_downloads": 817397,
"dependents_count": null,
"deprecation_note": null,
"maintainers_count": null,
"monthly_downloads": 111182,
"first_published_at": "2024-04-06T11:31:13.474799Z",
"latest_published_at": "2026-06-30T13:03:55.181433Z",
"latest_version_yanked": false,
"days_since_latest_publish": 25
},
{
"name": "aya-ebpf-cty",
"exists": true,
"license": "MIT OR Apache-2.0",
"keywords": [
"no-std",
"external-ffi-bindings",
"embedded"
],
"ecosystem": "crates",
"matches_repo": false,
"registry_url": "https://crates.io/crates/aya-ebpf-cty",
"is_deprecated": false,
"latest_version": "0.3.0",
"repository_url": "https://github.com/aya-rs/aya",
"versions_count": 4,
"total_downloads": 765972,
"dependents_count": null,
"deprecation_note": null,
"maintainers_count": null,
"monthly_downloads": 120943,
"first_published_at": "2024-04-06T11:00:38.882126Z",
"latest_published_at": "2026-06-24T17:54:57.914590Z",
"latest_version_yanked": false,
"days_since_latest_publish": 31
},
{
"name": "aya-log-ebpf",
"exists": true,
"license": "MIT OR Apache-2.0",
"keywords": [],
"ecosystem": "crates",
"matches_repo": false,
"registry_url": "https://crates.io/crates/aya-log-ebpf",
"is_deprecated": false,
"latest_version": "0.2.0",
"repository_url": "https://github.com/aya-rs/aya",
"versions_count": 3,
"total_downloads": 299245,
"dependents_count": null,
"deprecation_note": null,
"maintainers_count": null,
"monthly_downloads": 26315,
"first_published_at": "2024-04-12T13:39:56.690290Z",
"latest_published_at": "2026-06-24T17:56:36.539379Z",
"latest_version_yanked": false,
"days_since_latest_publish": 31
},
{
"name": "aya-ebpf-bindings",
"exists": true,
"license": "MIT OR Apache-2.0",
"keywords": [],
"ecosystem": "crates",
"matches_repo": false,
"registry_url": "https://crates.io/crates/aya-ebpf-bindings",
"is_deprecated": false,
"latest_version": "0.2.0",
"repository_url": "https://github.com/aya-rs/aya",
"versions_count": 4,
"total_downloads": 764630,
"dependents_count": null,
"deprecation_note": null,
"maintainers_count": null,
"monthly_downloads": 120675,
"first_published_at": "2024-04-06T11:13:47.628059Z",
"latest_published_at": "2026-06-24T17:55:11.782087Z",
"latest_version_yanked": false,
"days_since_latest_publish": 31
}
]
},
"popularity": {
"forks": 0,
"stars": 0,
"watchers": 0,
"fork_history": {
"days": [],
"complete": true,
"collected": 0,
"total_forks": 0
},
"star_history": {
"days": [],
"complete": true,
"collected": 0,
"total_stars": 0,
"collected_at": null
},
"open_issues_and_prs": 6
},
"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",
"aya-build/Cargo.toml",
"aya-ebpf-macros/Cargo.toml",
"aya-log-common/Cargo.toml",
"aya-log-ebpf-macros/Cargo.toml",
"aya-log-parser/Cargo.toml",
"aya-log/Cargo.toml",
"aya-obj/Cargo.toml",
"aya-tool/Cargo.toml",
"aya/Cargo.toml",
"ebpf/aya-ebpf-bindings/Cargo.toml",
"ebpf/aya-ebpf-cty/Cargo.toml",
"ebpf/aya-ebpf/Cargo.toml",
"ebpf/aya-log-ebpf/Cargo.toml",
"init/Cargo.toml",
"test/integration-common/Cargo.toml",
"test/integration-ebpf/Cargo.toml",
"test/integration-test/Cargo.toml",
"xtask/Cargo.toml"
],
"largest_source_bytes": 132093,
"source_files_sampled": 251,
"oversized_source_files": 16,
"agent_instruction_files": [],
"agent_instruction_max_bytes": null
},
"dependencies": {
"manifests": [
"Cargo.toml",
"aya-build/Cargo.toml",
"aya-ebpf-macros/Cargo.toml",
"aya-log-common/Cargo.toml",
"aya-log-ebpf-macros/Cargo.toml",
"aya-log-parser/Cargo.toml",
"aya-log/Cargo.toml",
"aya-obj/Cargo.toml",
"aya-tool/Cargo.toml",
"aya/Cargo.toml",
"init/Cargo.toml",
"xtask/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": 19,
"direct_affected_count": 0
},
"ecosystems": [
"crates"
],
"dependencies": [
{
"name": "anyhow",
"manifest": "aya-build/Cargo.toml",
"ecosystem": "crates",
"version_constraint": null
},
{
"name": "cargo_metadata",
"manifest": "aya-build/Cargo.toml",
"ecosystem": "crates",
"version_constraint": null
},
{
"name": "proc-macro2",
"manifest": "aya-ebpf-macros/Cargo.toml",
"ecosystem": "crates",
"version_constraint": null
},
{
"name": "proc-macro2-diagnostics",
"manifest": "aya-ebpf-macros/Cargo.toml",
"ecosystem": "crates",
"version_constraint": null
},
{
"name": "quote",
"manifest": "aya-ebpf-macros/Cargo.toml",
"ecosystem": "crates",
"version_constraint": null
},
{
"name": "syn",
"manifest": "aya-ebpf-macros/Cargo.toml",
"ecosystem": "crates",
"version_constraint": null
},
{
"name": "num_enum",
"manifest": "aya-log-common/Cargo.toml",
"ecosystem": "crates",
"version_constraint": null
},
{
"name": "aya-log-common",
"manifest": "aya-log-ebpf-macros/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "^0.1.14"
},
{
"name": "aya-log-parser",
"manifest": "aya-log-ebpf-macros/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "^0.1.13"
},
{
"name": "proc-macro2",
"manifest": "aya-log-ebpf-macros/Cargo.toml",
"ecosystem": "crates",
"version_constraint": null
},
{
"name": "quote",
"manifest": "aya-log-ebpf-macros/Cargo.toml",
"ecosystem": "crates",
"version_constraint": null
},
{
"name": "syn",
"manifest": "aya-log-ebpf-macros/Cargo.toml",
"ecosystem": "crates",
"version_constraint": null
},
{
"name": "aya-log-common",
"manifest": "aya-log-parser/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "^0.1.14"
},
{
"name": "aya",
"manifest": "aya-log/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "^0.13.1"
},
{
"name": "aya-log-common",
"manifest": "aya-log/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "^0.1.15"
},
{
"name": "bytes",
"manifest": "aya-log/Cargo.toml",
"ecosystem": "crates",
"version_constraint": null
},
{
"name": "log",
"manifest": "aya-log/Cargo.toml",
"ecosystem": "crates",
"version_constraint": null
},
{
"name": "thiserror",
"manifest": "aya-log/Cargo.toml",
"ecosystem": "crates",
"version_constraint": null
},
{
"name": "tokio",
"manifest": "aya-log/Cargo.toml",
"ecosystem": "crates",
"version_constraint": null
},
{
"name": "bytes",
"manifest": "aya-obj/Cargo.toml",
"ecosystem": "crates",
"version_constraint": null
},
{
"name": "hashbrown",
"manifest": "aya-obj/Cargo.toml",
"ecosystem": "crates",
"version_constraint": null
},
{
"name": "log",
"manifest": "aya-obj/Cargo.toml",
"ecosystem": "crates",
"version_constraint": null
},
{
"name": "object",
"manifest": "aya-obj/Cargo.toml",
"ecosystem": "crates",
"version_constraint": null
},
{
"name": "thiserror",
"manifest": "aya-obj/Cargo.toml",
"ecosystem": "crates",
"version_constraint": null
},
{
"name": "bindgen",
"manifest": "aya-tool/Cargo.toml",
"ecosystem": "crates",
"version_constraint": null
},
{
"name": "clap",
"manifest": "aya-tool/Cargo.toml",
"ecosystem": "crates",
"version_constraint": null
},
{
"name": "anyhow",
"manifest": "aya-tool/Cargo.toml",
"ecosystem": "crates",
"version_constraint": null
},
{
"name": "thiserror",
"manifest": "aya-tool/Cargo.toml",
"ecosystem": "crates",
"version_constraint": null
},
{
"name": "tempfile",
"manifest": "aya-tool/Cargo.toml",
"ecosystem": "crates",
"version_constraint": null
},
{
"name": "assert_matches",
"manifest": "aya/Cargo.toml",
"ecosystem": "crates",
"version_constraint": null
},
{
"name": "async-io",
"manifest": "aya/Cargo.toml",
"ecosystem": "crates",
"version_constraint": null
},
{
"name": "aya-obj",
"manifest": "aya/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "^0.2.1"
},
{
"name": "bitflags",
"manifest": "aya/Cargo.toml",
"ecosystem": "crates",
"version_constraint": null
},
{
"name": "bytes",
"manifest": "aya/Cargo.toml",
"ecosystem": "crates",
"version_constraint": null
},
{
"name": "hashbrown",
"manifest": "aya/Cargo.toml",
"ecosystem": "crates",
"version_constraint": null
},
{
"name": "libc",
"manifest": "aya/Cargo.toml",
"ecosystem": "crates",
"version_constraint": null
},
{
"name": "log",
"manifest": "aya/Cargo.toml",
"ecosystem": "crates",
"version_constraint": null
},
{
"name": "object",
"manifest": "aya/Cargo.toml",
"ecosystem": "crates",
"version_constraint": null
},
{
"name": "once_cell",
"manifest": "aya/Cargo.toml",
"ecosystem": "crates",
"version_constraint": null
},
{
"name": "thiserror",
"manifest": "aya/Cargo.toml",
"ecosystem": "crates",
"version_constraint": null
},
{
"name": "tokio",
"manifest": "aya/Cargo.toml",
"ecosystem": "crates",
"version_constraint": null
},
{
"name": "anyhow",
"manifest": "init/Cargo.toml",
"ecosystem": "crates",
"version_constraint": null
},
{
"name": "nix",
"manifest": "init/Cargo.toml",
"ecosystem": "crates",
"version_constraint": null
},
{
"name": "anyhow",
"manifest": "xtask/Cargo.toml",
"ecosystem": "crates",
"version_constraint": null
},
{
"name": "aya-tool",
"manifest": "xtask/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "0.1.0"
},
{
"name": "base64",
"manifest": "xtask/Cargo.toml",
"ecosystem": "crates",
"version_constraint": null
},
{
"name": "cargo_metadata",
"manifest": "xtask/Cargo.toml",
"ecosystem": "crates",
"version_constraint": null
},
{
"name": "clap",
"manifest": "xtask/Cargo.toml",
"ecosystem": "crates",
"version_constraint": null
},
{
"name": "dialoguer",
"manifest": "xtask/Cargo.toml",
"ecosystem": "crates",
"version_constraint": null
},
{
"name": "diff",
"manifest": "xtask/Cargo.toml",
"ecosystem": "crates",
"version_constraint": null
},
{
"name": "indoc",
"manifest": "xtask/Cargo.toml",
"ecosystem": "crates",
"version_constraint": null
},
{
"name": "octorust",
"manifest": "xtask/Cargo.toml",
"ecosystem": "crates",
"version_constraint": null
},
{
"name": "proc-macro2",
"manifest": "xtask/Cargo.toml",
"ecosystem": "crates",
"version_constraint": null
},
{
"name": "public-api",
"manifest": "xtask/Cargo.toml",
"ecosystem": "crates",
"version_constraint": null
},
{
"name": "quote",
"manifest": "xtask/Cargo.toml",
"ecosystem": "crates",
"version_constraint": null
},
{
"name": "rustdoc-json",
"manifest": "xtask/Cargo.toml",
"ecosystem": "crates",
"version_constraint": null
},
{
"name": "rustup-toolchain",
"manifest": "xtask/Cargo.toml",
"ecosystem": "crates",
"version_constraint": null
},
{
"name": "syn",
"manifest": "xtask/Cargo.toml",
"ecosystem": "crates",
"version_constraint": null
},
{
"name": "tempfile",
"manifest": "xtask/Cargo.toml",
"ecosystem": "crates",
"version_constraint": null
},
{
"name": "tokio",
"manifest": "xtask/Cargo.toml",
"ecosystem": "crates",
"version_constraint": null
},
{
"name": "which",
"manifest": "xtask/Cargo.toml",
"ecosystem": "crates",
"version_constraint": null
},
{
"name": "aya-ebpf-cty",
"manifest": "ebpf/aya-ebpf-bindings/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "^0.2.2"
},
{
"name": "aya-ebpf-cty",
"manifest": "ebpf/aya-ebpf/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "^0.2.2"
},
{
"name": "aya-ebpf-macros",
"manifest": "ebpf/aya-ebpf/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "^0.1.1"
},
{
"name": "aya-ebpf-bindings",
"manifest": "ebpf/aya-ebpf/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "^0.1.1"
},
{
"name": "aya-ebpf",
"manifest": "ebpf/aya-log-ebpf/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "^0.1.1"
},
{
"name": "aya-log-common",
"manifest": "ebpf/aya-log-ebpf/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "^0.1.15"
},
{
"name": "aya-log-ebpf-macros",
"manifest": "ebpf/aya-log-ebpf/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "^0.1.0"
}
],
"all_dependencies": {
"error": null,
"source": "github-sbom",
"packages": [
{
"name": "anyhow",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "async-io",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "bindgen",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "bitflags",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "bytes",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "libc",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "object",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "proc-macro2",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "quote",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "syn",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "thiserror",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "tokio",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "async-std",
"direct": false,
"version": null,
"ecosystem": "crates"
},
{
"name": "futures",
"direct": false,
"version": null,
"ecosystem": "crates"
},
{
"name": "indexmap",
"direct": false,
"version": null,
"ecosystem": "crates"
},
{
"name": "lazy_static",
"direct": false,
"version": null,
"ecosystem": "crates"
},
{
"name": "matches",
"direct": false,
"version": null,
"ecosystem": "crates"
},
{
"name": "parking_lot",
"direct": false,
"version": null,
"ecosystem": "crates"
},
{
"name": "structopt",
"direct": false,
"version": null,
"ecosystem": "crates"
}
],
"collected": true,
"truncated": false,
"total_count": 19,
"direct_count": 12,
"indirect_count": 7
}
},
"maintainership": {
"issues": {
"open_prs": 6,
"merged_prs": 3,
"open_issues": 0,
"closed_ratio": null,
"closed_issues": 0,
"closed_unmerged_prs": 28
},
"bus_factor": 2,
"bot_contributors": 1,
"top_contributors": [
{
"type": "User",
"login": "alessandrod",
"commits": 569,
"avatar_url": "https://avatars.githubusercontent.com/u/62002?v=4"
},
{
"type": "User",
"login": "dave-tucker",
"commits": 373,
"avatar_url": "https://avatars.githubusercontent.com/u/3781777?v=4"
},
{
"type": "User",
"login": "tamird",
"commits": 369,
"avatar_url": "https://avatars.githubusercontent.com/u/1535036?v=4"
},
{
"type": "User",
"login": "vadorovsky",
"commits": 112,
"avatar_url": "https://avatars.githubusercontent.com/u/34685103?v=4"
},
{
"type": "User",
"login": "astoycos",
"commits": 39,
"avatar_url": "https://avatars.githubusercontent.com/u/23533892?v=4"
},
{
"type": "User",
"login": "ajwerner",
"commits": 37,
"avatar_url": "https://avatars.githubusercontent.com/u/1839234?v=4"
},
{
"type": "User",
"login": "marysaka",
"commits": 23,
"avatar_url": "https://avatars.githubusercontent.com/u/1760003?v=4"
},
{
"type": "User",
"login": "Tuetuopay",
"commits": 22,
"avatar_url": "https://avatars.githubusercontent.com/u/4009336?v=4"
},
{
"type": "User",
"login": "willfindlay",
"commits": 19,
"avatar_url": "https://avatars.githubusercontent.com/u/24983811?v=4"
},
{
"type": "User",
"login": "nak3",
"commits": 18,
"avatar_url": "https://avatars.githubusercontent.com/u/2138339?v=4"
}
],
"contributors_sampled": 79,
"top_contributor_share": 0.315
},
"quality_signals": {
"has_ci": true,
"has_tests": true,
"ci_workflows": [
"ci.yml",
"gen.yml"
],
"has_docs_dir": false,
"linter_configs": [],
"has_editorconfig": false,
"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": 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": 0,
"reason": "0 out of 1 merged PRs checked by a CI test -- score normalized to 0",
"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": 0,
"reason": "Found 0/29 approved changesets -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#code-review"
},
{
"name": "Contributors",
"score": 10,
"reason": "project has 34 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": 0,
"reason": "0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0",
"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": 0,
"reason": "security policy file not 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": "e82253c915fd87af1a5b6a8e657d4860285ba2b2",
"ran_at": "2026-07-26T05:58:27Z",
"aggregate_score": 4.1,
"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-03-21T04:37:20Z",
"oldest_open_prs": [
{
"number": 8,
"created_at": "2022-06-06T13:11:54Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 17,
"created_at": "2023-03-20T14:00:35Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 22,
"created_at": "2023-04-24T13:58:34Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 28,
"created_at": "2025-03-31T10:47:45Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 36,
"created_at": "2025-12-15T13:17:30Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 37,
"created_at": "2026-01-19T15:07:14Z",
"last_comment_at": null,
"last_comment_author": null
}
],
"last_merged_pr_at": "2025-02-05T14:14:27Z",
"ci_last_conclusion": "FAILURE",
"oldest_open_issues": []
}
},
"config": {
"disabled_metrics": [],
"disabled_categories": [],
"disabled_components": {}
},
"source": {
"url": "https://github.com/dave-tucker/aya",
"host": "github.com",
"name": "aya",
"owner": "dave-tucker"
},
"metrics": {
"overall": {
"key": "overall",
"band": "critical",
"name": "Overall health",
"note": "Abandonment Policy applies a 60% multiplier to weighted overall health and gives it a ceiling of 49.",
"notes": [
{
"code": "abandonment_overall_adjustment",
"params": {
"cap": 49,
"pct": 60
}
}
],
"value": 19,
"inputs": {
"security": 41,
"vitality": 26,
"community": 12,
"governance": 47,
"engineering": 33,
"abandonment_cap": 49,
"abandonment_state": "likely_abandoned",
"abandonment_multiplier": 60,
"weighted_overall_before_abandonment": 32,
"overall_after_abandonment_multiplier": 19
},
"components": []
},
"categories": [
{
"key": "vitality",
"band": "critical",
"name": "Vitality",
"value": 26,
"weight": 0.22,
"metrics": [
{
"key": "development_activity",
"band": "critical",
"name": "Development activity",
"note": null,
"notes": [],
"value": 4,
"inputs": {
"commits_last_year": 0,
"human_commit_share": 0.86,
"days_since_last_push": 187,
"active_weeks_last_year": 0
},
"components": [
{
"key": "push_recency",
"name": "Push recency",
"detail": "last push 187 days ago",
"points": 3.6,
"status": "partial",
"details": [
{
"code": "push_recency",
"params": {
"days": 187
}
}
],
"max_points": 36
},
{
"key": "commit_cadence",
"name": "Commit cadence",
"detail": "0/52 weeks with commits",
"points": 0,
"status": "missed",
"details": [
{
"code": "commit_cadence_weeks",
"params": {
"weeks": 0
}
}
],
"max_points": 36
},
{
"key": "commit_volume",
"name": "Commit volume",
"detail": "0 commits in the last year",
"points": 0,
"status": "missed",
"details": [
{
"code": "commits_last_year",
"params": {
"count": 0
}
}
],
"max_points": 18
},
{
"key": "openssf_scorecard_maintained",
"name": "OpenSSF Scorecard: Maintained",
"detail": "0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
}
]
},
{
"key": "release_discipline",
"band": "moderate",
"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": 60,
"inputs": {
"releases_count": 2,
"latest_release_tag": "aya-v0.11.0",
"releases_from_tags": false,
"days_since_latest_release": 1660,
"mean_days_between_releases": 0
},
"components": [
{
"key": "ships_releases",
"name": "Ships releases",
"detail": "2 releases published",
"points": 27,
"status": "met",
"details": [
{
"code": "releases_published",
"params": {
"count": 2
}
}
],
"max_points": 27
},
{
"key": "release_recency",
"name": "Release recency",
"detail": "latest release 1660 days ago",
"points": 0,
"status": "missed",
"details": [
{
"code": "release_recency",
"params": {
"days": 1660
}
}
],
"max_points": 36
},
{
"key": "release_cadence",
"name": "Release cadence",
"detail": "a release every ~0 days",
"points": 27,
"status": "met",
"details": [
{
"code": "release_cadence",
"params": {
"gap": 0
}
}
],
"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": "moderate",
"name": "Abandonment",
"note": null,
"notes": [],
"value": 60,
"inputs": {
"cap": 49,
"state": "likely_abandoned",
"guards": [],
"signals": [
"unanswered_contributions",
"scorecard_unmaintained",
"broken_ci"
],
"red_flag": true,
"multiplier_pct": 60,
"declared_reason": null,
"unverified_reason": null,
"unanswered_open_prs": 6,
"unanswered_open_issues": 0,
"days_since_last_merged_pr": 535,
"days_since_last_human_commit": 536,
"days_since_last_human_commit_is_floor": false
},
"components": [
{
"key": "project_is_still_maintained",
"name": "Project is still maintained",
"detail": "no human commit for 536 days; 3 unmet obligation(s): pull requests unanswered, Scorecard reports it unmaintained, CI broken",
"points": 60,
"status": "partial",
"details": [
{
"code": "abandonment_flagged",
"params": {
"days": 536,
"count": 3,
"signals": "pull requests unanswered, Scorecard reports it unmaintained, CI broken"
}
}
],
"max_points": 100
}
]
}
],
"description": "Is the project alive — is code being written and are releases shipping?"
},
{
"key": "community",
"band": "critical",
"name": "Community & Adoption",
"value": 12,
"weight": 0.18,
"metrics": [
{
"key": "popularity",
"band": "critical",
"name": "Popularity & adoption",
"note": null,
"notes": [],
"value": 1,
"inputs": {
"forks": 0,
"stars": 0,
"watchers": 0,
"growth_state": "unverified",
"growth_factor_pct": 100,
"growth_unverified_reason": "no_history"
},
"components": [
{
"key": "stars",
"name": "Stars",
"detail": "0 stars",
"points": 0,
"status": "missed",
"details": [
{
"code": "stars",
"params": {
"count": 0
}
}
],
"max_points": 60
},
{
"key": "forks",
"name": "Forks",
"detail": "0 forks",
"points": 0,
"status": "missed",
"details": [
{
"code": "forks",
"params": {
"count": 0
}
}
],
"max_points": 25
},
{
"key": "watchers",
"name": "Watchers",
"detail": "0 watchers",
"points": 0,
"status": "missed",
"details": [
{
"code": "watchers",
"params": {
"count": 0
}
}
],
"max_points": 15
}
]
},
{
"key": "community_health",
"band": "critical",
"name": "Community health",
"note": null,
"notes": [],
"value": 25,
"inputs": {
"has_readme": false,
"has_license": false,
"has_contributing": false,
"has_issue_template": false,
"has_code_of_conduct": false,
"has_pull_request_template": false
},
"components": [
{
"key": "readme",
"name": "README",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 22.5
},
{
"key": "license",
"name": "License",
"detail": "recognized license (Apache-2.0)",
"points": 22.5,
"status": "met",
"details": [
{
"code": "license_standard",
"params": {}
},
{
"code": "license_spdx",
"params": {
"spdx": "Apache-2.0"
}
}
],
"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": 0,
"status": "missed",
"details": [],
"max_points": 6.3
}
]
}
],
"description": "Does the project have users, downloads, attention, and a welcoming setup for contributors?"
},
{
"key": "governance",
"band": "at_risk",
"name": "Sustainability & Governance",
"value": 47,
"weight": 0.24,
"metrics": [
{
"key": "maintainer_resilience",
"band": "moderate",
"name": "Maintainer resilience (bus factor)",
"note": null,
"notes": [],
"value": 64,
"inputs": {
"bus_factor": 2,
"contributors_sampled": 79,
"top_contributor_share": 0.315
},
"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 32% of commits",
"points": 15.4,
"status": "partial",
"details": [
{
"code": "top_contributor_share",
"params": {
"share": 32
}
}
],
"max_points": 22.5
},
{
"key": "contributor_breadth",
"name": "Contributor breadth",
"detail": "79 contributors",
"points": 13.5,
"status": "met",
"details": [
{
"code": "contributors_sampled",
"params": {
"count": 79
}
}
],
"max_points": 13.5
},
{
"key": "openssf_scorecard_contributors",
"name": "OpenSSF Scorecard: Contributors",
"detail": "project has 34 contributing companies or organizations",
"points": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
},
{
"key": "responsiveness",
"band": "critical",
"name": "Issue & PR responsiveness",
"note": "Excluded from scoring (no data or not applicable): Issue resolution. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"issue_resolution"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 7,
"inputs": {
"merged_prs": 3,
"open_issues": 0,
"closed_issues": 0,
"issue_closed_ratio": null,
"closed_unmerged_prs": 28
},
"components": [
{
"key": "issue_resolution",
"name": "Issue resolution",
"detail": "no issues or no data",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_issues_or_data",
"params": {}
}
],
"max_points": 46.75
},
{
"key": "pr_acceptance",
"name": "PR acceptance",
"detail": "3/31 decided PRs merged",
"points": 3.7,
"status": "partial",
"details": [
{
"code": "decided_prs_merged",
"params": {
"merged": 3,
"decided": 31
}
}
],
"max_points": 38.25
},
{
"key": "openssf_scorecard_code_review",
"name": "OpenSSF Scorecard: Code-Review",
"detail": "Found 0/29 approved changesets -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 15
}
]
},
{
"key": "stewardship",
"band": "moderate",
"name": "Ownership & stewardship",
"note": "Excluded from scoring (no data or not applicable): Verified domain. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"verified_domain"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 66,
"inputs": {
"followers": 313,
"owner_type": "User",
"is_verified": null,
"owner_login": "dave-tucker",
"public_repos": 217,
"account_age_days": 4890
},
"components": [
{
"key": "ownership_backing",
"name": "Ownership backing",
"detail": "personal (user) account",
"points": 10,
"status": "partial",
"details": [
{
"code": "owner_personal",
"params": {}
}
],
"max_points": 30
},
{
"key": "verified_domain",
"name": "Verified domain",
"detail": "not applicable to user accounts",
"points": 0,
"status": "excluded",
"details": [
{
"code": "not_applicable_to_user_accounts",
"params": {}
}
],
"max_points": 20
},
{
"key": "owner_reach",
"name": "Owner reach",
"detail": "313 followers of dave-tucker",
"points": 18,
"status": "partial",
"details": [
{
"code": "owner_followers",
"params": {
"count": 313,
"login": "dave-tucker"
}
}
],
"max_points": 25
},
{
"key": "track_record",
"name": "Track record",
"detail": "217 public repos, account ~13 yr old",
"points": 25,
"status": "met",
"details": [
{
"code": "public_repos",
"params": {
"count": 217
}
},
{
"code": "account_age_years",
"params": {
"years": 13
}
}
],
"max_points": 25
}
]
}
],
"description": "Will the project survive its people — bus factor, responsiveness, who backs it, and package upkeep?"
},
{
"key": "engineering",
"band": "at_risk",
"name": "Engineering Quality",
"value": 33,
"weight": 0.2,
"metrics": [
{
"key": "engineering_practices",
"band": "at_risk",
"name": "Engineering practices",
"note": null,
"notes": [],
"value": 48,
"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": "2 workflow(s)",
"points": 24,
"status": "met",
"details": [
{
"code": "ci_workflows",
"params": {
"count": 2
}
}
],
"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": "0 out of 1 merged PRs checked by a CI test -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 20
}
]
},
{
"key": "documentation",
"band": "critical",
"name": "Documentation",
"note": null,
"notes": [],
"value": 10,
"inputs": {
"topics": [],
"has_wiki": true,
"homepage": null,
"has_readme": false,
"has_docs_dir": false,
"has_description": false
},
"components": [
{
"key": "readme",
"name": "README",
"detail": null,
"points": 0,
"status": "missed",
"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": 0,
"status": "missed",
"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": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
}
],
"description": "Are baseline engineering and documentation practices in place?"
},
{
"key": "security",
"band": "at_risk",
"name": "Security",
"value": 41,
"weight": 0.16,
"metrics": [
{
"key": "security_posture",
"band": "at_risk",
"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": 41,
"inputs": {
"source": "openssf_scorecard",
"checks_evaluated": 16,
"scorecard_version": "v5.5.0",
"checks_inconclusive": 2,
"scorecard_aggregate": 4.1
},
"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": "0 out of 1 merged PRs checked by a CI test -- score normalized to 0",
"points": 0,
"status": "missed",
"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 0/29 approved changesets -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "contributors",
"name": "Contributors",
"detail": "project has 34 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": "0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0",
"points": 0,
"status": "missed",
"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 not detected",
"points": 0,
"status": "missed",
"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": "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": 11
},
"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": 55,
"weight": 0,
"metrics": [
{
"key": "ai_agent_context",
"band": "at_risk",
"name": "Agent context & guidance",
"note": null,
"notes": [],
"value": 35,
"inputs": {
"has_llms_txt": false,
"legible_history_share": 0.663,
"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": "57 of 86 human commits state their intent (structured subject or explanatory body)",
"points": 35.3,
"status": "partial",
"details": [
{
"code": "legible_history",
"params": {
"legible": 57,
"sampled": 86
}
}
],
"max_points": 40
}
]
},
{
"key": "ai_verify_loop",
"band": "moderate",
"name": "Verify loop (build / test / typecheck)",
"note": null,
"notes": [],
"value": 54,
"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,
"toolchain_manifests": [
"Cargo.toml",
"aya-build/Cargo.toml",
"aya-ebpf-macros/Cargo.toml",
"aya-log-common/Cargo.toml",
"aya-log-ebpf-macros/Cargo.toml",
"aya-log-parser/Cargo.toml",
"aya-log/Cargo.toml",
"aya-obj/Cargo.toml",
"aya-tool/Cargo.toml",
"aya/Cargo.toml",
"ebpf/aya-ebpf-bindings/Cargo.toml",
"ebpf/aya-ebpf-cty/Cargo.toml",
"ebpf/aya-ebpf/Cargo.toml",
"ebpf/aya-log-ebpf/Cargo.toml",
"init/Cargo.toml",
"test/integration-common/Cargo.toml",
"test/integration-ebpf/Cargo.toml",
"test/integration-test/Cargo.toml",
"xtask/Cargo.toml"
],
"dependency_bot_commit_share": 0.14
},
"components": [
{
"key": "one_command_bootstrap",
"name": "One-command bootstrap",
"detail": "Cargo.toml, aya-build/Cargo.toml, aya-ebpf-macros/Cargo.toml (toolchain convention, no task runner)",
"points": 12.6,
"status": "partial",
"details": [
{
"code": "toolchain_convention",
"params": {
"files": "Cargo.toml, aya-build/Cargo.toml, aya-ebpf-macros/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": "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": "14 of the last 100 commits are automated dependency updates",
"points": 8,
"status": "met",
"details": [
{
"code": "dependency_bot_commits",
"params": {
"count": 14,
"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": 96,
"inputs": {
"primary_language": "Rust",
"largest_source_bytes": 132093,
"source_files_sampled": 251,
"oversized_source_files": 16
},
"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": "16/251 source files over 60KB",
"points": 51.5,
"status": "partial",
"details": [
{
"code": "oversized_source_files",
"params": {
"kb": 60,
"sampled": 251,
"oversized": 16
}
}
],
"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": [
"Community profile unavailable",
"crates package 'aya' points at a different repository (https://github.com/aya-rs/aya); excluded from ecosystem scoring",
"crates package 'init' points at a different repository (https://github.com/mehcode/init-rs/tree/master/init); excluded from ecosystem scoring",
"crates package 'xtask' points at a different repository (https://github.com/arcboxlabs/xtask); excluded from ecosystem scoring",
"crates package 'aya-log' points at a different repository (https://github.com/aya-rs/aya); excluded from ecosystem scoring",
"crates package 'aya-obj' points at a different repository (https://github.com/aya-rs/aya); excluded from ecosystem scoring",
"Could not fetch crates package 'aya-tool' from its registry",
"crates package 'aya-build' points at a different repository (https://github.com/aya-rs/aya); excluded from ecosystem scoring",
"crates package 'aya-log-common' points at a different repository (https://github.com/aya-rs/aya); excluded from ecosystem scoring",
"crates package 'aya-ebpf' points at a different repository (https://github.com/aya-rs/aya); excluded from ecosystem scoring",
"crates package 'aya-ebpf-cty' points at a different repository (https://github.com/aya-rs/aya); excluded from ecosystem scoring",
"crates package 'aya-log-ebpf' points at a different repository (https://github.com/aya-rs/aya); excluded from ecosystem scoring",
"crates package 'aya-ebpf-bindings' points at a different repository (https://github.com/aya-rs/aya); excluded from ecosystem scoring",
"No resolved dependencies carried a version and a supported ecosystem"
],
"report_type": "repository",
"generated_at": "2026-07-26T05:58:44.681345Z",
"schema_version": "0.27.0",
"badge_url": "https://raw.githubusercontent.com/inspect-software/badges/main/v1/d/dave-tucker/aya.svg",
"full_name": "dave-tucker/aya",
"license_state": "standard",
"license_spdx": "Apache-2.0"
}