Raw JSON report machine-readable
{
"data": {
"repo": {
"topics": [],
"is_fork": false,
"size_kb": 150,
"has_wiki": false,
"homepage": null,
"languages": {
"C": 197,
"Rust": 78929
},
"pushed_at": "2026-07-24T17:51:40Z",
"created_at": "2025-11-10T20:23:29Z",
"owner_type": "Organization",
"updated_at": "2026-07-24T17:48:50Z",
"description": "Rust bindings for Falco's `libscap` eBPF monitoring backend C library",
"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": "https://edera.dev",
"name": "Edera",
"type": "Organization",
"login": "edera-dev",
"company": null,
"location": "United States of America",
"followers": 230,
"avatar_url": "https://avatars.githubusercontent.com/u/153982650?v=4",
"created_at": "2023-12-16T08:25:59Z",
"is_verified": null,
"public_repos": 56,
"account_age_days": 952
},
"license": {
"state": "standard",
"spdx_id": "Apache-2.0",
"raw_spdx": "Apache-2.0",
"file_present": true,
"scorecard_found": true,
"profile_has_license": true
},
"activity": {
"releases": [
{
"tag": "v0.0.9",
"kind": "patch",
"published_at": "2026-07-24T16:05:55Z"
},
{
"tag": "v0.0.8",
"kind": "patch",
"published_at": "2026-06-05T17:36:20Z"
},
{
"tag": "v0.0.7",
"kind": "patch",
"published_at": "2026-04-20T23:54:21Z"
},
{
"tag": "v0.0.6",
"kind": "patch",
"published_at": "2026-03-02T19:23:41Z"
},
{
"tag": "v0.0.5",
"kind": "patch",
"published_at": "2026-02-05T00:16:31Z"
},
{
"tag": "v0.0.4",
"kind": "patch",
"published_at": "2026-02-02T23:47:31Z"
},
{
"tag": "v0.0.3",
"kind": "patch",
"published_at": "2026-01-06T17:39:39Z"
},
{
"tag": "v0.0.2",
"kind": "patch",
"published_at": "2025-11-17T19:21:59Z"
}
],
"recent_commits": [
{
"oid": "43c6f58d057217033dfce218bedcd12468bba8d5",
"body": "Allow hermetic build environments (Nix, Bazel, air-gapped CI) to supply\npre-fetched inputs for the two fetches build.rs performs itself: the\nlibscap source tree (VENDOR_LIBSCAP_SRC_DIR replaces the git clone) and\nthe bpftool release archive (VENDOR_BPFTOOL_ARCHIVE replaces the\ndownload, verified aga\n[…]\nd on the pin SHA and\nsource path drops the copied tree whenever either changes; unsetting\nthe hook drops the tree and the cmake build dir (so cached version\ndefines don't leak into clone-path builds).",
"is_bot": false,
"headline": "Add optional VENDOR_* env hooks for offline builds (#95)",
"author_name": "Jade",
"author_login": "jades-ant",
"committed_at": "2026-07-24T17:48:36Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "df4322fd822e0f60b4787c1df447b44c009bbca0",
"body": null,
"is_bot": true,
"headline": "chore: release v0.0.9",
"author_name": "edera-cultivation[bot]",
"author_login": "edera-cultivation[bot]",
"committed_at": "2026-07-24T15:55:43Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "540ee53e0f643f0f7d7ae9f6fe9f19fdac10da22",
"body": "The build script only needs a single blocking HTTPS GET to fetch the\nbpftool release, but reqwest dragged an entire async stack — tokio, hyper,\nquinn — into build-dependencies, and since reqwest 0.13 defaults its rustls\nprovider to aws-lc-rs, the heavy aws-lc-sys C library too. That whole\nsubgraph w\n[…]\nUIC stack,\nand the remaining bytes + rustls-webpki advisories are unchanged from the\nreqwest tree (same rustls 0.23 stack) and awaiting upstream fixes.\n\nSigned-off-by: Steven Noonan <steven@edera.dev>",
"is_bot": false,
"headline": "build: download bpftool with ureq instead of reqwest",
"author_name": "Steven Noonan",
"author_login": "tycho",
"committed_at": "2026-07-24T08:04:09Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "c9af8dc8594fc98d1e3f87303eb8c2b3b336e80d",
"body": "The full bindings pass had emit_clang_ast() enabled, a bindgen\ndebugging aid that dumps the entire parsed clang AST for inc/libscap.h\nto the build script's stdout. That's pure overhead in normal builds:\nextra work in the largest of the three bindgen passes (~1.4s on my dev\nbox, versus ~0.25s for each of the two filtered passes) and megabytes\nof noise captured into cargo's build output file. The generated\nbindings are unaffected.\n\nSigned-off-by: Steven Noonan <steven@edera.dev>",
"is_bot": false,
"headline": "build: stop emitting the clang AST during bindgen",
"author_name": "Steven Noonan",
"author_login": "tycho",
"committed_at": "2026-07-24T00:47:53Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cd7d414775023c03fd108f99fd58bcb8578ab84c",
"body": "The bpftool release archive download (~9.6MB) ran serially after the\ngit fetch, but the two are independent network operations. Split\nfetch_bpftool() into spawn_bpftool_download(), which starts the\ndownload on a background thread (skipped when a previously downloaded\narchive with a good checksum is \n[…]\ncross build inside protect): hides\nessentially the whole ~1s bpftool download behind the git fetch on\na cold build-script run; more on slower networks.\n\nSigned-off-by: Steven Noonan <steven@edera.dev>",
"is_bot": false,
"headline": "build: overlap the bpftool download with the libscap git fetch",
"author_name": "Steven Noonan",
"author_login": "tycho",
"committed_at": "2026-07-24T00:46:48Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "c040d784d1d49eb0a0314bf821311be28bcb520d",
"body": "… libbpf\n\nCMake-generated compile rules honor CMAKE_C_COMPILER_LAUNCHER\n(sccache/ccache), but two libscap build steps never see it:\n\n- the modern_bpf eBPF objects are compiled by ${MODERN_CLANG_EXE}\n inside add_custom_command rules, which don't apply launchers\n- libbpf builds via an ExternalProject\n[…]\nPF objects\nfrom ~5.4s to ~2.6s, and the whole cmake phase from ~16.8s to ~8s. The\nfirst build after this change pays one-time cache-population misses.\n\nSigned-off-by: Steven Noonan <steven@edera.dev>",
"is_bot": false,
"headline": "build: route launcher-bypassing compiles through sccache, parallelize…",
"author_name": "Steven Noonan",
"author_login": "tycho",
"committed_at": "2026-07-24T00:46:38Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "2c08ae78f01abb3bdb94a7a4fbd41d7937a857f4",
"body": "The build script cloned the entire falcosecurity/libs repository (~44MB\nof pack data) only to immediately check out one pinned SHA. Fetch just\nthat commit instead (~4MB): init an empty repo, `fetch --depth=1` the\npinned SHA, and detach onto FETCH_HEAD. Fetching by SHA is\ncontent-addressed, so the ch\n[…]\nd inside protect): the clone phase of\nthe build script drops from ~5.8s to ~1.4s cold; the transfer shrinks\nabout 10x regardless of network conditions.\n\nSigned-off-by: Steven Noonan <steven@edera.dev>",
"is_bot": false,
"headline": "build: fetch only the pinned libscap commit instead of a full clone",
"author_name": "Steven Noonan",
"author_login": "tycho",
"committed_at": "2026-07-24T00:46:30Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "18d8fa886dfb5e266bbb32fa5356c17c54f46560",
"body": "Bumps the cargo-updates group with 2 updates in the / directory: [anyhow](https://github.com/dtolnay/anyhow) and [reqwest](https://github.com/seanmonstar/reqwest).\n\n\nUpdates `anyhow` from 1.0.102 to 1.0.103\n- [Release notes](https://github.com/dtolnay/anyhow/releases)\n- [Commits](https://github.com/\n[…]\nrsion-update:semver-patch\n dependency-group: cargo-updates\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "Bump the cargo-updates group across 1 directory with 2 updates (#90)",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-07-17T16:27:34Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "32b81f15c5df81e02adc7e1fbdd3ff6b268c16ea",
"body": "Bumps the actions-updates group with 5 updates in the / directory:\n\n| Package | From | To |\n| --- | --- | --- |\n| [step-security/harden-runner](https://github.com/step-security/harden-runner) | `2.19.1` | `2.19.4` |\n| [actions/checkout](https://github.com/actions/checkout) | `6.0.2` | `7.0.0` |\n| [a\n[…]\nion-update:semver-patch\n dependency-group: actions-updates\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "Bump the actions-updates group across 1 directory with 5 updates (#89)",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-07-17T16:21:37Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "e475ae5be58075c3f0bf71de06218d0a47f6bfe8",
"body": "Co-authored-by: edera-cultivation[bot] <165992271+edera-cultivation[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "chore: release v0.0.8 (#83)",
"author_name": "edera-cultivation[bot]",
"author_login": "edera-cultivation[bot]",
"committed_at": "2026-06-05T17:33:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "805d7260aaedf100763dcfd52e5fa2439b597ded",
"body": "Bumps the actions-updates group with 5 updates in the / directory:\n\n| Package | From | To |\n| --- | --- | --- |\n| [step-security/harden-runner](https://github.com/step-security/harden-runner) | `2.17.0` | `2.19.1` |\n| [astral-sh/setup-uv](https://github.com/astral-sh/setup-uv) | `8.0.0` | `8.1.0` |\n\n[…]\nons-updates\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>\nCo-authored-by: Ben Leggett <benjamin@edera.io>",
"is_bot": true,
"headline": "Bump the actions-updates group across 1 directory with 5 updates (#80)",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-06-05T17:23:56Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "3ec6d618b34eb438570ae2eb84fd5a1ff11b4b94",
"body": "Bumps the cargo-updates group with 3 updates in the / directory: [libc](https://github.com/rust-lang/libc), [reqwest](https://github.com/seanmonstar/reqwest) and [tar](https://github.com/composefs/tar-rs).\n\n\nUpdates `libc` from 0.2.185 to 0.2.186\n- [Release notes](https://github.com/rust-lang/libc/r\n[…]\nrsion-update:semver-patch\n dependency-group: cargo-updates\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "Bump the cargo-updates group across 1 directory with 3 updates (#82)",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-06-05T17:20:06Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "fd983a8daad9c6d5b663cb51ddca80f90dd858ec",
"body": "Bumps the actions-updates group with 2 updates: [step-security/harden-runner](https://github.com/step-security/harden-runner) and [actions/create-github-app-token](https://github.com/actions/create-github-app-token).\n\n\nUpdates `step-security/harden-runner` from 2.16.1 to 2.17.0\n- [Release notes](htt\n[…]\nion-update:semver-minor\n dependency-group: actions-updates\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "Bump the actions-updates group with 2 updates (#73)",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-04-21T17:38:45Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "032dc014c316b6574ec94b0097459fd1cb2aab5c",
"body": "Bumps the cargo-updates group with 3 updates: [libc](https://github.com/rust-lang/libc), [cmake](https://github.com/rust-lang/cmake-rs) and [tar](https://github.com/alexcrichton/tar-rs).\n\n\nUpdates `libc` from 0.2.182 to 0.2.185\n- [Release notes](https://github.com/rust-lang/libc/releases)\n- [Changel\n[…]\nrsion-update:semver-patch\n dependency-group: cargo-updates\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "Bump the cargo-updates group with 3 updates (#72)",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-04-21T17:35:49Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "7a9003c3ac3d6ea41d72ced19f23c3afe4489202",
"body": "Co-authored-by: edera-cultivation[bot] <165992271+edera-cultivation[bot]@users.noreply.github.com>\nCo-authored-by: Ben Leggett <benjamin@edera.io>",
"is_bot": true,
"headline": "chore: release v0.0.7 (#70)",
"author_name": "edera-cultivation[bot]",
"author_login": "edera-cultivation[bot]",
"committed_at": "2026-04-20T23:51:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "33f2f99dee44323ccf52f7788b64dda9b5f31850",
"body": "Bumps the actions-updates group with 5 updates in the / directory:\n\n| Package | From | To |\n| --- | --- | --- |\n| [step-security/harden-runner](https://github.com/step-security/harden-runner) | `2.14.2` | `2.16.1` |\n| [astral-sh/setup-uv](https://github.com/astral-sh/setup-uv) | `7.3.0` | `8.0.0` |\n\n[…]\nons-updates\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>\nCo-authored-by: Ben Leggett <benjamin@edera.io>",
"is_bot": true,
"headline": "Bump the actions-updates group across 1 directory with 5 updates (#68)",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-04-20T23:48:21Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "cf7d0cf21886d102bb8ca3160614967527bb6e49",
"body": null,
"is_bot": false,
"headline": "Bump to reqwest 0.13 to get sysroots (#69)",
"author_name": "Ben Leggett",
"author_login": "bleggett",
"committed_at": "2026-04-20T23:39:59Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0a91197942eed3e770aa7adec0234f10bee365bc",
"body": "Co-authored-by: edera-cultivation[bot] <165992271+edera-cultivation[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "chore: release v0.0.6 (#51)",
"author_name": "edera-cultivation[bot]",
"author_login": "edera-cultivation[bot]",
"committed_at": "2026-03-02T19:21:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4f019ddb64d0a91af212dd94fc16eb6bc5f996a5",
"body": "…ry (#54)\n\nBumps the actions-updates group with 1 update in the / directory: [release-plz/action](https://github.com/release-plz/action).\n\n\nUpdates `release-plz/action` from 0.5.124 to 0.5.127\n- [Release notes](https://github.com/release-plz/action/releases)\n- [Commits](https://github.com/release-pl\n[…]\nons-updates\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>\nCo-authored-by: Ben Leggett <benjamin@edera.io>",
"is_bot": true,
"headline": "Bump release-plz/action in the actions-updates group across 1 directo…",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-03-02T19:12:45Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "e5932b7c9618f68da77130b0486c99ec61e1f1fd",
"body": "Bumps the cargo-updates group with 4 updates in the / directory: [anyhow](https://github.com/dtolnay/anyhow), [strum](https://github.com/Peternator7/strum), [strum_macros](https://github.com/Peternator7/strum) and [libc](https://github.com/rust-lang/libc).\n\n\nUpdates `anyhow` from 1.0.101 to 1.0.102\n\n[…]\nrsion-update:semver-patch\n dependency-group: cargo-updates\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "Bump the cargo-updates group across 1 directory with 4 updates (#56)",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-03-02T19:10:02Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "4d3ba8c2b9603994852f776d6d65b151284f1b33",
"body": null,
"is_bot": false,
"headline": "Update this (#50)",
"author_name": "Ben Leggett",
"author_login": "bleggett",
"committed_at": "2026-02-20T00:13:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "24223c81d8ace2810bcd5f7d6540e87f8f8c8c05",
"body": "Bumps the cargo-updates group with 3 updates in the / directory: [anyhow](https://github.com/dtolnay/anyhow), [libc](https://github.com/rust-lang/libc) and [flate2](https://github.com/rust-lang/flate2-rs).\n\n\nUpdates `anyhow` from 1.0.100 to 1.0.101\n- [Release notes](https://github.com/dtolnay/anyhow\n[…]\nrgo-updates\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>\nCo-authored-by: Ben Leggett <benjamin@edera.io>",
"is_bot": true,
"headline": "Bump the cargo-updates group across 1 directory with 3 updates (#48)",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-02-19T23:54:52Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "a39b3835031cf34314ab55070c2a535a77a1d1a0",
"body": "Bumps the actions-updates group with 2 updates in the / directory: [step-security/harden-runner](https://github.com/step-security/harden-runner) and [astral-sh/setup-uv](https://github.com/astral-sh/setup-uv).\n\n\nUpdates `step-security/harden-runner` from 2.14.1 to 2.14.2\n- [Release notes](https://gi\n[…]\nion-update:semver-minor\n dependency-group: actions-updates\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "Bump the actions-updates group across 1 directory with 2 updates (#47)",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-02-19T23:51:16Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "320d4fc610c2c3db2a0f43b8d921604dd03e9768",
"body": "Co-authored-by: edera-cultivation[bot] <165992271+edera-cultivation[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "chore: release v0.0.5 (#42)",
"author_name": "edera-cultivation[bot]",
"author_login": "edera-cultivation[bot]",
"committed_at": "2026-02-05T00:13:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d5d3bb3ec58fdb7f1ba58a9f8461c6ea19709180",
"body": null,
"is_bot": false,
"headline": "Use different builder for bpf (#41)",
"author_name": "Ben Leggett",
"author_login": "bleggett",
"committed_at": "2026-02-05T00:07:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fc2acea81e856fb3b3a0712de8b93e7669d4a95c",
"body": "Co-authored-by: edera-cultivation[bot] <165992271+edera-cultivation[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "chore: release v0.0.4 (#31)",
"author_name": "edera-cultivation[bot]",
"author_login": "edera-cultivation[bot]",
"committed_at": "2026-02-02T23:44:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c873f859f3d7f0b889330d1d97c822bdb2cca8b3",
"body": "Bumps the actions-updates group with 3 updates in the / directory: [step-security/harden-runner](https://github.com/step-security/harden-runner), [actions/checkout](https://github.com/actions/checkout) and [release-plz/action](https://github.com/release-plz/action).\n\n\nUpdates `step-security/harden-r\n[…]\nons-updates\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>\nCo-authored-by: Ben Leggett <benjamin@edera.io>",
"is_bot": true,
"headline": "Bump the actions-updates group across 1 directory with 3 updates (#39)",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-02-02T23:37:28Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "2ee34b9cfd4a7e8fcd7497fff103ead97e5b7e7f",
"body": "Bumps the cargo-updates group with 2 updates in the / directory: [libc](https://github.com/rust-lang/libc) and [flate2](https://github.com/rust-lang/flate2-rs).\n\n\nUpdates `libc` from 0.2.179 to 0.2.180\n- [Release notes](https://github.com/rust-lang/libc/releases)\n- [Changelog](https://github.com/rus\n[…]\nrgo-updates\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>\nCo-authored-by: Ben Leggett <benjamin@edera.io>",
"is_bot": true,
"headline": "Bump the cargo-updates group across 1 directory with 2 updates (#34)",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-02-02T23:32:38Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "93c8c0b863a7c89f0e73d42b87abd866ceeb0eae",
"body": null,
"is_bot": false,
"headline": "Bump libscap (#40)",
"author_name": "Ben Leggett",
"author_login": "bleggett",
"committed_at": "2026-02-02T23:27:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "971ea031b2183a968eb0bb1a9c2a21c26c0d8697",
"body": "Bumps the cargo-updates group with 1 update: [libc](https://github.com/rust-lang/libc).\n\n\nUpdates `libc` from 0.2.178 to 0.2.179\n- [Release notes](https://github.com/rust-lang/libc/releases)\n- [Changelog](https://github.com/rust-lang/libc/blob/main/CHANGELOG.md)\n- [Commits](https://github.com/rust-l\n[…]\nrsion-update:semver-patch\n dependency-group: cargo-updates\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "Bump libc from 0.2.178 to 0.2.179 in the cargo-updates group (#30)",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-01-12T16:44:27Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "604280973b4a78962076518faf276eff47c07cf5",
"body": "Co-authored-by: edera-cultivation[bot] <165992271+edera-cultivation[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "chore: release v0.0.3 (#20)",
"author_name": "edera-cultivation[bot]",
"author_login": "edera-cultivation[bot]",
"committed_at": "2026-01-06T17:36:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1ddf4e0e5ed0cffdc0edc3f674df1d449f67ef1d",
"body": "Bumps the cargo-updates group with 2 updates: [cmake](https://github.com/rust-lang/cmake-rs) and [reqwest](https://github.com/seanmonstar/reqwest).\n\n\nUpdates `cmake` from 0.1.56 to 0.1.57\n- [Release notes](https://github.com/rust-lang/cmake-rs/releases)\n- [Changelog](https://github.com/rust-lang/cma\n[…]\nrgo-updates\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>\nCo-authored-by: Ben Leggett <benjamin@edera.io>",
"is_bot": true,
"headline": "Bump the cargo-updates group with 2 updates (#29)",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-01-06T15:54:48Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "60d7411db8125705a420f21298f6b80f3de07119",
"body": null,
"is_bot": false,
"headline": "Bump toolchain to 1.92 (#28)",
"author_name": "Ben Leggett",
"author_login": "bleggett",
"committed_at": "2026-01-06T15:52:01Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ca9793f4782411838079f96293786a6d5c8d93e0",
"body": "Bumps the cargo-updates group with 2 updates in the / directory: [cmake](https://github.com/rust-lang/cmake-rs) and [reqwest](https://github.com/seanmonstar/reqwest).\n\n\nUpdates `cmake` from 0.1.54 to 0.1.56\n- [Release notes](https://github.com/rust-lang/cmake-rs/releases)\n- [Changelog](https://githu\n[…]\nrgo-updates\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>\nCo-authored-by: Ben Leggett <benjamin@edera.io>",
"is_bot": true,
"headline": "Bump the cargo-updates group across 1 directory with 2 updates (#26)",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-01-05T18:08:27Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "c7ddf48ada7f35b1451f681c1664567db3a2ff58",
"body": "Bumps the actions-updates group with 2 updates in the / directory: [astral-sh/setup-uv](https://github.com/astral-sh/setup-uv) and [github/codeql-action](https://github.com/github/codeql-action).\n\n\nUpdates `astral-sh/setup-uv` from 7.1.4 to 7.1.6\n- [Release notes](https://github.com/astral-sh/setup-\n[…]\nion-update:semver-minor\n dependency-group: actions-updates\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "Bump the actions-updates group across 1 directory with 2 updates (#27)",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-01-05T18:02:38Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "4d7fad1e5419cfed29f8226b1ec6875f455bad2b",
"body": "Bumps the cargo-updates group with 1 update: [reqwest](https://github.com/seanmonstar/reqwest).\n\n\nUpdates `reqwest` from 0.12.24 to 0.12.25\n- [Release notes](https://github.com/seanmonstar/reqwest/releases)\n- [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md)\n- [Commits](ht\n[…]\nrgo-updates\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>\nCo-authored-by: Ben Leggett <benjamin@edera.io>",
"is_bot": true,
"headline": "Bump reqwest from 0.12.24 to 0.12.25 in the cargo-updates group (#22)",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2025-12-17T19:21:00Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "c30ee4774b7bd0302a7d298165eaf8af66100b2e",
"body": "Bumps the actions-updates group with 3 updates in the / directory: [step-security/harden-runner](https://github.com/step-security/harden-runner), [actions/create-github-app-token](https://github.com/actions/create-github-app-token) and [release-plz/action](https://github.com/release-plz/action).\n\n\nU\n[…]\nion-update:semver-patch\n dependency-group: actions-updates\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "Bump the actions-updates group across 1 directory with 3 updates (#23)",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2025-12-17T19:15:14Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "a691985809588baa4b6bb6c8469ff8936925a2b2",
"body": "… (#19)\n\nBumps the actions-updates group with 1 update in the / directory: [actions/checkout](https://github.com/actions/checkout).\n\n\nUpdates `actions/checkout` from 6.0.0 to 6.0.1\n- [Release notes](https://github.com/actions/checkout/releases)\n- [Changelog](https://github.com/actions/checkout/blob/\n[…]\nons-updates\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>\nCo-authored-by: Ben Leggett <benjamin@edera.io>",
"is_bot": true,
"headline": "Bump actions/checkout in the actions-updates group across 1 directory…",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2025-12-10T17:04:21Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "51ad0a983f00e0619f7edcbd0cae14f1e35cc8a9",
"body": "Bumps the cargo-updates group with 1 update: [libc](https://github.com/rust-lang/libc).\n\n\nUpdates `libc` from 0.2.177 to 0.2.178\n- [Release notes](https://github.com/rust-lang/libc/releases)\n- [Changelog](https://github.com/rust-lang/libc/blob/0.2.178/CHANGELOG.md)\n- [Commits](https://github.com/rus\n[…]\nrsion-update:semver-patch\n dependency-group: cargo-updates\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "Bump libc from 0.2.177 to 0.2.178 in the cargo-updates group (#18)",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2025-12-10T16:46:04Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "ba73e1268be4d5f08eb910a4f7b4c15939955b31",
"body": "Bumps the actions-updates group with 4 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [astral-sh/setup-uv](https://github.com/astral-sh/setup-uv), [actions/create-github-app-token](https://github.com/actions/create-github-app-token) and [release-plz/action](http\n[…]\nion-update:semver-patch\n dependency-group: actions-updates\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "Bump the actions-updates group across 1 directory with 4 updates (#15)",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2025-12-02T22:48:59Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "3156923f89be7a566379688002bddb40da6bc7e0",
"body": "…oup (#11)\n\nBumps the actions-updates group with 1 update: [astral-sh/setup-uv](https://github.com/astral-sh/setup-uv).\n\n\nUpdates `astral-sh/setup-uv` from 7.1.0 to 7.1.3\n- [Release notes](https://github.com/astral-sh/setup-uv/releases)\n- [Commits](https://github.com/astral-sh/setup-uv/compare/3259c\n[…]\nons-updates\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>\nCo-authored-by: Ben Leggett <benjamin@edera.io>",
"is_bot": true,
"headline": "Bump astral-sh/setup-uv from 7.1.0 to 7.1.3 in the actions-updates gr…",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2025-11-18T22:07:00Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "0581b70f854b56577905948bfec3e48e4b2a6111",
"body": null,
"is_bot": false,
"headline": "Drop path filtering - breaks req'd gates (#12)",
"author_name": "Ben Leggett",
"author_login": "bleggett",
"committed_at": "2025-11-18T22:04:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f506dd6d97f98887a24d090ad657cd2794cf847c",
"body": null,
"is_bot": false,
"headline": "Cargo publish needs llvm deps too (#10)",
"author_name": "Ben Leggett",
"author_login": "bleggett",
"committed_at": "2025-11-17T19:15:22Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3fe5575ef913698ade4b981fc7334120a441394a",
"body": "Co-authored-by: edera-cultivation[bot] <165992271+edera-cultivation[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "chore: release v0.0.2 (#9)",
"author_name": "edera-cultivation[bot]",
"author_login": "edera-cultivation[bot]",
"committed_at": "2025-11-17T17:45:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3a3f01d88abf0da50fb4e1adea7a247325480a60",
"body": null,
"is_bot": false,
"headline": "Add lockfile (#8)",
"author_name": "Ben Leggett",
"author_login": "bleggett",
"committed_at": "2025-11-14T22:45:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cad7c679b27b89c512e953151947043a6f813efb",
"body": null,
"is_bot": false,
"headline": "fix README (#7)",
"author_name": "Ben Leggett",
"author_login": "bleggett",
"committed_at": "2025-11-14T20:49:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "caa7a61cb060dabf179b1de67aa467d4525fb86e",
"body": "Bumps the actions-updates group with 1 update in the / directory: [step-security/harden-runner](https://github.com/step-security/harden-runner).\n\n\nUpdates `step-security/harden-runner` from 2.13.1 to 2.13.2\n- [Release notes](https://github.com/step-security/harden-runner/releases)\n- [Commits](https:\n[…]\nons-updates\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>\nCo-authored-by: Ben Leggett <benjamin@edera.io>",
"is_bot": true,
"headline": "Bump step-security/harden-runner (#4)",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2025-11-14T20:31:09Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "ec489e0b294b3fc8e8a6d360b3c66ccdc1112194",
"body": null,
"is_bot": false,
"headline": "fix slug (#6)",
"author_name": "Ben Leggett",
"author_login": "bleggett",
"committed_at": "2025-11-14T20:24:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8d12c13bfee88aece18152f41c268fca44e2a966",
"body": "* fixup\n\n* more gitignore\n\n* clarify\n\n* Add action for llvm",
"is_bot": false,
"headline": "Publish fixups (#5)",
"author_name": "Ben Leggett",
"author_login": "bleggett",
"committed_at": "2025-11-14T20:20:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c5421631d218fd8d0513a48282785a93a07a4dc0",
"body": null,
"is_bot": false,
"headline": "Add workflow stuff",
"author_name": "Benjamin Leggett",
"author_login": "bleggett",
"committed_at": "2025-11-10T20:50:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e3a04428a3601532b7b5ca822a22f1be5ee01d7d",
"body": null,
"is_bot": false,
"headline": "Initial commit",
"author_name": "Ben Leggett",
"author_login": "bleggett",
"committed_at": "2025-11-10T20:33:04Z",
"body_truncated": false,
"is_coding_agent": false
}
],
"releases_count": 8,
"commits_last_year": 51,
"latest_release_at": "2026-07-24T16:05:55Z",
"latest_release_tag": "v0.0.9",
"releases_from_tags": false,
"days_since_last_push": 1,
"active_weeks_last_year": 14,
"days_since_latest_release": 1,
"mean_days_between_releases": 35.6
},
"community": {
"has_readme": true,
"has_license": true,
"has_description": true,
"has_contributing": false,
"health_percentage": 37,
"has_issue_template": false,
"has_code_of_conduct": false,
"has_pull_request_template": false
},
"ecosystem": {
"packages": [
{
"name": "libscap-bindings",
"exists": true,
"license": "Apache-2.0",
"keywords": [
"bindings",
"ebpf",
"falco",
"libscap",
"external-ffi-bindings",
"os::linux-apis"
],
"ecosystem": "crates",
"matches_repo": true,
"registry_url": "https://crates.io/crates/libscap-bindings",
"is_deprecated": false,
"latest_version": "0.0.9",
"repository_url": "https://github.com/edera-dev/libscap-bindings",
"versions_count": 9,
"total_downloads": 22929,
"dependents_count": null,
"deprecation_note": null,
"maintainers_count": null,
"monthly_downloads": 4001,
"first_published_at": "2025-11-14T20:25:12.058719Z",
"latest_published_at": "2026-07-24T16:05:52.227013Z",
"latest_version_yanked": false,
"days_since_latest_publish": 1
}
]
},
"popularity": {
"forks": 2,
"stars": 0,
"watchers": 0,
"fork_history": {
"days": [
{
"date": "2026-02-02",
"count": 1
}
],
"complete": true,
"collected": 1,
"total_forks": 2
},
"star_history": {
"days": [],
"complete": true,
"collected": 0,
"total_stars": 0,
"collected_at": null
},
"open_issues_and_prs": 3
},
"ai_readiness": {
"has_nix": false,
"example_dirs": [],
"has_llms_txt": false,
"has_dockerfile": false,
"has_mcp_signal": false,
"bootstrap_files": [],
"api_schema_files": [],
"has_devcontainer": false,
"typecheck_configs": [],
"toolchain_manifests": [
"Cargo.toml"
],
"largest_source_bytes": 30327,
"source_files_sampled": 5,
"oversized_source_files": 0,
"agent_instruction_files": [],
"agent_instruction_max_bytes": null
},
"dependencies": {
"manifests": [
"Cargo.toml"
],
"advisories": {
"error": null,
"scope": "repository_graph",
"source": "osv",
"findings": [
{
"name": "rustls-webpki",
"direct": false,
"version": "0.103.8",
"severity": "high",
"ecosystem": "crates",
"cvss_score": 7.5,
"advisory_ids": [
"GHSA-82j2-j2ch-gfr8",
"GHSA-965h-392x-2mh5",
"GHSA-pwjx-qhcg-rvj4",
"GHSA-xgp8-3hg3-c2mh",
"RUSTSEC-2026-0049",
"RUSTSEC-2026-0098",
"RUSTSEC-2026-0099",
"RUSTSEC-2026-0104"
],
"fixed_version": "0.104.0-alpha.7",
"advisory_count": 8,
"oldest_advisory_days": 127
},
{
"name": "bytes",
"direct": false,
"version": "1.11.0",
"severity": "moderate",
"ecosystem": "crates",
"cvss_score": 6.2,
"advisory_ids": [
"GHSA-434x-w66g-qw3r",
"RUSTSEC-2026-0007"
],
"fixed_version": "1.11.1",
"advisory_count": 2,
"oldest_advisory_days": 172
}
],
"collected": true,
"malicious": [],
"truncated": false,
"by_severity": {
"high": 1,
"moderate": 1
},
"advisory_count": 10,
"affected_count": 2,
"assessed_count": 100,
"malicious_count": 0,
"assessed_package": null,
"unassessed_count": 0,
"direct_affected_count": 0
},
"ecosystems": [
"crates"
],
"dependencies": [
{
"name": "anyhow",
"manifest": "Cargo.toml",
"ecosystem": "crates",
"version_constraint": "1.0.102"
},
{
"name": "strum",
"manifest": "Cargo.toml",
"ecosystem": "crates",
"version_constraint": "0.28"
},
{
"name": "strum_macros",
"manifest": "Cargo.toml",
"ecosystem": "crates",
"version_constraint": "0.28"
}
],
"all_dependencies": {
"error": null,
"source": "github-sbom",
"packages": [
{
"name": "anyhow",
"direct": true,
"version": "1.0.103",
"ecosystem": "crates"
},
{
"name": "strum",
"direct": true,
"version": "0.28.0",
"ecosystem": "crates"
},
{
"name": "strum_macros",
"direct": true,
"version": "0.28.0",
"ecosystem": "crates"
},
{
"name": "adler2",
"direct": false,
"version": "2.0.1",
"ecosystem": "crates"
},
{
"name": "aho-corasick",
"direct": false,
"version": "1.1.4",
"ecosystem": "crates"
},
{
"name": "async-trait",
"direct": false,
"version": "0.1.89",
"ecosystem": "crates"
},
{
"name": "base64",
"direct": false,
"version": "0.22.1",
"ecosystem": "crates"
},
{
"name": "bindgen",
"direct": false,
"version": "0.72.1",
"ecosystem": "crates"
},
{
"name": "bitflags",
"direct": false,
"version": "2.11.1",
"ecosystem": "crates"
},
{
"name": "block-buffer",
"direct": false,
"version": "0.10.4",
"ecosystem": "crates"
},
{
"name": "bytes",
"direct": false,
"version": "1.11.0",
"ecosystem": "crates"
},
{
"name": "cc",
"direct": false,
"version": "1.2.46",
"ecosystem": "crates"
},
{
"name": "cexpr",
"direct": false,
"version": "0.6.0",
"ecosystem": "crates"
},
{
"name": "cfg-if",
"direct": false,
"version": "1.0.4",
"ecosystem": "crates"
},
{
"name": "clang-sys",
"direct": false,
"version": "1.8.1",
"ecosystem": "crates"
},
{
"name": "cmake",
"direct": false,
"version": "0.1.58",
"ecosystem": "crates"
},
{
"name": "cpufeatures",
"direct": false,
"version": "0.2.17",
"ecosystem": "crates"
},
{
"name": "crypto-common",
"direct": false,
"version": "0.1.7",
"ecosystem": "crates"
},
{
"name": "digest",
"direct": false,
"version": "0.10.7",
"ecosystem": "crates"
},
{
"name": "either",
"direct": false,
"version": "1.15.0",
"ecosystem": "crates"
},
{
"name": "errno",
"direct": false,
"version": "0.3.14",
"ecosystem": "crates"
},
{
"name": "filetime",
"direct": false,
"version": "0.2.26",
"ecosystem": "crates"
},
{
"name": "find-msvc-tools",
"direct": false,
"version": "0.1.5",
"ecosystem": "crates"
},
{
"name": "flate2",
"direct": false,
"version": "1.1.9",
"ecosystem": "crates"
},
{
"name": "fnv",
"direct": false,
"version": "1.0.7",
"ecosystem": "crates"
},
{
"name": "generic-array",
"direct": false,
"version": "0.14.7",
"ecosystem": "crates"
},
{
"name": "getrandom",
"direct": false,
"version": "0.2.16",
"ecosystem": "crates"
},
{
"name": "glob",
"direct": false,
"version": "0.3.3",
"ecosystem": "crates"
},
{
"name": "heck",
"direct": false,
"version": "0.5.0",
"ecosystem": "crates"
},
{
"name": "hex",
"direct": false,
"version": "0.4.3",
"ecosystem": "crates"
},
{
"name": "http",
"direct": false,
"version": "1.3.1",
"ecosystem": "crates"
},
{
"name": "httparse",
"direct": false,
"version": "1.10.1",
"ecosystem": "crates"
},
{
"name": "itertools",
"direct": false,
"version": "0.13.0",
"ecosystem": "crates"
},
{
"name": "itoa",
"direct": false,
"version": "1.0.15",
"ecosystem": "crates"
},
{
"name": "libc",
"direct": false,
"version": "0.2.186",
"ecosystem": "crates"
},
{
"name": "libredox",
"direct": false,
"version": "0.1.10",
"ecosystem": "crates"
},
{
"name": "linux-raw-sys",
"direct": false,
"version": "0.11.0",
"ecosystem": "crates"
},
{
"name": "log",
"direct": false,
"version": "0.4.28",
"ecosystem": "crates"
},
{
"name": "memchr",
"direct": false,
"version": "2.7.6",
"ecosystem": "crates"
},
{
"name": "minimal-lexical",
"direct": false,
"version": "0.2.1",
"ecosystem": "crates"
},
{
"name": "miniz_oxide",
"direct": false,
"version": "0.8.9",
"ecosystem": "crates"
},
{
"name": "nom",
"direct": false,
"version": "7.1.3",
"ecosystem": "crates"
},
{
"name": "once_cell",
"direct": false,
"version": "1.21.3",
"ecosystem": "crates"
},
{
"name": "percent-encoding",
"direct": false,
"version": "2.3.2",
"ecosystem": "crates"
},
{
"name": "pin-project-lite",
"direct": false,
"version": "0.2.16",
"ecosystem": "crates"
},
{
"name": "prettyplease",
"direct": false,
"version": "0.2.37",
"ecosystem": "crates"
},
{
"name": "proc-macro2",
"direct": false,
"version": "1.0.103",
"ecosystem": "crates"
},
{
"name": "quote",
"direct": false,
"version": "1.0.42",
"ecosystem": "crates"
},
{
"name": "redox_syscall",
"direct": false,
"version": "0.5.18",
"ecosystem": "crates"
},
{
"name": "regex",
"direct": false,
"version": "1.12.2",
"ecosystem": "crates"
},
{
"name": "regex-automata",
"direct": false,
"version": "0.4.13",
"ecosystem": "crates"
},
{
"name": "regex-syntax",
"direct": false,
"version": "0.8.8",
"ecosystem": "crates"
},
{
"name": "ring",
"direct": false,
"version": "0.17.14",
"ecosystem": "crates"
},
{
"name": "rustc-hash",
"direct": false,
"version": "2.1.1",
"ecosystem": "crates"
},
{
"name": "rustix",
"direct": false,
"version": "1.1.2",
"ecosystem": "crates"
},
{
"name": "rustls",
"direct": false,
"version": "0.23.35",
"ecosystem": "crates"
},
{
"name": "rustls-pki-types",
"direct": false,
"version": "1.13.0",
"ecosystem": "crates"
},
{
"name": "rustls-webpki",
"direct": false,
"version": "0.103.8",
"ecosystem": "crates"
},
{
"name": "sha2",
"direct": false,
"version": "0.10.9",
"ecosystem": "crates"
},
{
"name": "sha256",
"direct": false,
"version": "1.6.0",
"ecosystem": "crates"
},
{
"name": "shlex",
"direct": false,
"version": "1.3.0",
"ecosystem": "crates"
},
{
"name": "simd-adler32",
"direct": false,
"version": "0.3.7",
"ecosystem": "crates"
},
{
"name": "subtle",
"direct": false,
"version": "2.6.1",
"ecosystem": "crates"
},
{
"name": "syn",
"direct": false,
"version": "2.0.110",
"ecosystem": "crates"
},
{
"name": "tar",
"direct": false,
"version": "0.4.46",
"ecosystem": "crates"
},
{
"name": "tokio",
"direct": false,
"version": "1.48.0",
"ecosystem": "crates"
},
{
"name": "typenum",
"direct": false,
"version": "1.19.0",
"ecosystem": "crates"
},
{
"name": "unicode-ident",
"direct": false,
"version": "1.0.22",
"ecosystem": "crates"
},
{
"name": "untrusted",
"direct": false,
"version": "0.9.0",
"ecosystem": "crates"
},
{
"name": "ureq",
"direct": false,
"version": "3.3.0",
"ecosystem": "crates"
},
{
"name": "ureq-proto",
"direct": false,
"version": "0.6.0",
"ecosystem": "crates"
},
{
"name": "utf8-zero",
"direct": false,
"version": "0.8.1",
"ecosystem": "crates"
},
{
"name": "version_check",
"direct": false,
"version": "0.9.5",
"ecosystem": "crates"
},
{
"name": "wasi",
"direct": false,
"version": "0.11.1+wasi-snapshot-preview1",
"ecosystem": "crates"
},
{
"name": "webpki-roots",
"direct": false,
"version": "1.0.9",
"ecosystem": "crates"
},
{
"name": "windows-link",
"direct": false,
"version": "0.2.1",
"ecosystem": "crates"
},
{
"name": "windows-sys",
"direct": false,
"version": "0.52.0",
"ecosystem": "crates"
},
{
"name": "windows-sys",
"direct": false,
"version": "0.60.2",
"ecosystem": "crates"
},
{
"name": "windows-sys",
"direct": false,
"version": "0.61.2",
"ecosystem": "crates"
},
{
"name": "windows-targets",
"direct": false,
"version": "0.52.6",
"ecosystem": "crates"
},
{
"name": "windows-targets",
"direct": false,
"version": "0.53.5",
"ecosystem": "crates"
},
{
"name": "windows_aarch64_gnullvm",
"direct": false,
"version": "0.52.6",
"ecosystem": "crates"
},
{
"name": "windows_aarch64_gnullvm",
"direct": false,
"version": "0.53.1",
"ecosystem": "crates"
},
{
"name": "windows_aarch64_msvc",
"direct": false,
"version": "0.52.6",
"ecosystem": "crates"
},
{
"name": "windows_aarch64_msvc",
"direct": false,
"version": "0.53.1",
"ecosystem": "crates"
},
{
"name": "windows_i686_gnu",
"direct": false,
"version": "0.52.6",
"ecosystem": "crates"
},
{
"name": "windows_i686_gnu",
"direct": false,
"version": "0.53.1",
"ecosystem": "crates"
},
{
"name": "windows_i686_gnullvm",
"direct": false,
"version": "0.52.6",
"ecosystem": "crates"
},
{
"name": "windows_i686_gnullvm",
"direct": false,
"version": "0.53.1",
"ecosystem": "crates"
},
{
"name": "windows_i686_msvc",
"direct": false,
"version": "0.52.6",
"ecosystem": "crates"
},
{
"name": "windows_i686_msvc",
"direct": false,
"version": "0.53.1",
"ecosystem": "crates"
},
{
"name": "windows_x86_64_gnu",
"direct": false,
"version": "0.52.6",
"ecosystem": "crates"
},
{
"name": "windows_x86_64_gnu",
"direct": false,
"version": "0.53.1",
"ecosystem": "crates"
},
{
"name": "windows_x86_64_gnullvm",
"direct": false,
"version": "0.52.6",
"ecosystem": "crates"
},
{
"name": "windows_x86_64_gnullvm",
"direct": false,
"version": "0.53.1",
"ecosystem": "crates"
},
{
"name": "windows_x86_64_msvc",
"direct": false,
"version": "0.52.6",
"ecosystem": "crates"
},
{
"name": "windows_x86_64_msvc",
"direct": false,
"version": "0.53.1",
"ecosystem": "crates"
},
{
"name": "xattr",
"direct": false,
"version": "1.6.1",
"ecosystem": "crates"
},
{
"name": "zeroize",
"direct": false,
"version": "1.8.2",
"ecosystem": "crates"
},
{
"name": "zlib-rs",
"direct": false,
"version": "0.6.0",
"ecosystem": "crates"
}
],
"collected": true,
"truncated": false,
"total_count": 100,
"direct_count": 3,
"indirect_count": 97
}
},
"maintainership": {
"issues": {
"open_prs": 3,
"merged_prs": 45,
"open_issues": 0,
"closed_ratio": null,
"closed_issues": 0,
"closed_unmerged_prs": 50
},
"bus_factor": 1,
"bot_contributors": 2,
"top_contributors": [
{
"type": "User",
"login": "bleggett",
"commits": 13,
"avatar_url": "https://avatars.githubusercontent.com/u/854255?v=4"
},
{
"type": "User",
"login": "tycho",
"commits": 5,
"avatar_url": "https://avatars.githubusercontent.com/u/29616?v=4"
},
{
"type": "User",
"login": "jades-ant",
"commits": 1,
"avatar_url": "https://avatars.githubusercontent.com/u/296208484?v=4"
}
],
"contributors_sampled": 3,
"top_contributor_share": 0.684
},
"quality_signals": {
"has_ci": true,
"has_tests": false,
"ci_workflows": [
"ci-actions.yaml",
"ci-code.yaml",
"release.yaml"
],
"has_docs_dir": false,
"linter_configs": [],
"has_editorconfig": false,
"has_linter_config": false,
"has_precommit_config": false
},
"security_signals": {
"lockfiles": [
"Cargo.lock"
],
"scorecard": {
"checks": [
{
"name": "Binary-Artifacts",
"score": 10,
"reason": "no binaries found in the repo",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#binary-artifacts"
},
{
"name": "Branch-Protection",
"score": 8,
"reason": "branch protection is not maximal on development and all release branches",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#branch-protection"
},
{
"name": "CI-Tests",
"score": 10,
"reason": "26 out of 26 merged PRs checked by a CI test -- score normalized to 10",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#ci-tests"
},
{
"name": "CII-Best-Practices",
"score": 0,
"reason": "no effort to earn an OpenSSF best practices badge detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#cii-best-practices"
},
{
"name": "Code-Review",
"score": 8,
"reason": "Found 5/6 approved changesets -- score normalized to 8",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#code-review"
},
{
"name": "Contributors",
"score": 10,
"reason": "project has 4 contributing companies or organizations",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#contributors"
},
{
"name": "Dangerous-Workflow",
"score": 10,
"reason": "no dangerous workflow patterns detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#dangerous-workflow"
},
{
"name": "Dependency-Update-Tool",
"score": 10,
"reason": "update tool detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#dependency-update-tool"
},
{
"name": "Fuzzing",
"score": 0,
"reason": "project is not fuzzed",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#fuzzing"
},
{
"name": "License",
"score": 10,
"reason": "license file detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#license"
},
{
"name": "Maintained",
"score": 10,
"reason": "12 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#maintained"
},
{
"name": "Packaging",
"score": null,
"reason": "packaging workflow not detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#packaging"
},
{
"name": "Pinned-Dependencies",
"score": 10,
"reason": "all dependencies are pinned",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#pinned-dependencies"
},
{
"name": "SAST",
"score": 9,
"reason": "SAST tool is not run on all commits -- score normalized to 9",
"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": 10,
"reason": "GitHub workflow tokens follow principle of least privilege",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#token-permissions"
},
{
"name": "Vulnerabilities",
"score": 5,
"reason": "5 existing vulnerabilities detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#vulnerabilities"
}
],
"commit": "43c6f58d057217033dfce218bedcd12468bba8d5",
"ran_at": "2026-07-25T18:06:13Z",
"aggregate_score": 7.9,
"scorecard_version": "v5.5.0"
},
"has_codeql_workflow": false,
"has_security_policy": false,
"has_dependabot_config": true
},
"contribution_flow": {
"collected": true,
"ci_last_run_at": "2026-07-24T17:51:46Z",
"oldest_open_prs": [
{
"number": 94,
"created_at": "2026-07-24T13:15:19Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 97,
"created_at": "2026-07-24T16:00:31Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 98,
"created_at": "2026-07-24T17:51:40Z",
"last_comment_at": null,
"last_comment_author": null
}
],
"last_merged_pr_at": "2026-07-24T17:48:37Z",
"ci_last_conclusion": "SUCCESS",
"oldest_open_issues": []
}
},
"config": {
"disabled_metrics": [],
"disabled_categories": [],
"disabled_components": {}
},
"source": {
"url": "https://github.com/edera-dev/libscap-bindings",
"host": "github.com",
"name": "libscap-bindings",
"owner": "edera-dev"
},
"metrics": {
"overall": {
"key": "overall",
"band": "moderate",
"name": "Overall health",
"note": null,
"notes": [],
"value": 60,
"inputs": {
"security": 83,
"vitality": 83,
"community": 33,
"governance": 60,
"engineering": 42
},
"components": []
},
"categories": [
{
"key": "vitality",
"band": "good",
"name": "Vitality",
"value": 83,
"weight": 0.22,
"metrics": [
{
"key": "development_activity",
"band": "good",
"name": "Development activity",
"note": null,
"notes": [],
"value": 71,
"inputs": {
"commits_last_year": 51,
"human_commit_share": 0.373,
"days_since_last_push": 1,
"active_weeks_last_year": 14
},
"components": [
{
"key": "push_recency",
"name": "Push recency",
"detail": "last push 1 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "push_recency",
"params": {
"days": 1
}
}
],
"max_points": 36
},
{
"key": "commit_cadence",
"name": "Commit cadence",
"detail": "14/52 weeks with commits",
"points": 9.7,
"status": "partial",
"details": [
{
"code": "commit_cadence_weeks",
"params": {
"weeks": 14
}
}
],
"max_points": 36
},
{
"key": "commit_volume",
"name": "Commit volume",
"detail": "51 commits in the last year",
"points": 15.4,
"status": "partial",
"details": [
{
"code": "commits_last_year",
"params": {
"count": 51
}
}
],
"max_points": 18
},
{
"key": "openssf_scorecard_maintained",
"name": "OpenSSF Scorecard: Maintained",
"detail": "12 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10",
"points": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
},
{
"key": "release_discipline",
"band": "excellent",
"name": "Release discipline",
"note": "Excluded from scoring (no data or not applicable): OpenSSF Scorecard: Signed-Releases. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"openssf_scorecard_signed_releases"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 100,
"inputs": {
"releases_count": 8,
"latest_release_tag": "v0.0.9",
"releases_from_tags": false,
"days_since_latest_release": 1,
"mean_days_between_releases": 35.6
},
"components": [
{
"key": "ships_releases",
"name": "Ships releases",
"detail": "8 releases published",
"points": 27,
"status": "met",
"details": [
{
"code": "releases_published",
"params": {
"count": 8
}
}
],
"max_points": 27
},
{
"key": "release_recency",
"name": "Release recency",
"detail": "latest release 1 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "release_recency",
"params": {
"days": 1
}
}
],
"max_points": 36
},
{
"key": "release_cadence",
"name": "Release cadence",
"detail": "a release every ~35.6 days",
"points": 27,
"status": "met",
"details": [
{
"code": "release_cadence",
"params": {
"gap": 35.6
}
}
],
"max_points": 27
},
{
"key": "openssf_scorecard_signed_releases",
"name": "OpenSSF Scorecard: Signed-Releases",
"detail": "no releases found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 10
}
]
},
{
"key": "abandonment",
"band": "excellent",
"name": "Abandonment",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"cap": null,
"state": "maintained",
"guards": [],
"signals": [],
"red_flag": false,
"multiplier_pct": 100,
"declared_reason": null,
"unverified_reason": null,
"unanswered_open_prs": null,
"unanswered_open_issues": null,
"days_since_last_merged_pr": null,
"days_since_last_human_commit": 1,
"days_since_last_human_commit_is_floor": false
},
"components": [
{
"key": "project_is_still_maintained",
"name": "Project is still maintained",
"detail": "last human commit 1 days ago",
"points": 100,
"status": "met",
"details": [
{
"code": "abandonment_maintained",
"params": {
"days": 1
}
}
],
"max_points": 100
}
]
}
],
"description": "Is the project alive — is code being written and are releases shipping?"
},
{
"key": "community",
"band": "at_risk",
"name": "Community & Adoption",
"value": 33,
"weight": 0.18,
"metrics": [
{
"key": "popularity",
"band": "critical",
"name": "Popularity & adoption",
"note": null,
"notes": [],
"value": 1,
"inputs": {
"forks": 2,
"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": "2 forks",
"points": 0,
"status": "missed",
"details": [
{
"code": "forks",
"params": {
"count": 2
}
}
],
"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": "moderate",
"name": "Community health",
"note": null,
"notes": [],
"value": 50,
"inputs": {
"has_readme": true,
"has_license": true,
"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": 22.5,
"status": "met",
"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
}
]
},
{
"key": "ecosystem_adoption",
"band": "moderate",
"name": "Ecosystem adoption (downloads)",
"note": "Excluded from scoring (no data or not applicable): Registry dependents. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"registry_dependents"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 60,
"inputs": {
"packages": [
"libscap-bindings"
],
"dependents": null,
"ecosystems": "crates",
"total_downloads": 22929,
"monthly_downloads": 4001
},
"components": [
{
"key": "monthly_downloads",
"name": "Monthly downloads",
"detail": "4,001 downloads/month across crates",
"points": 48,
"status": "partial",
"details": [
{
"code": "downloads_monthly",
"params": {
"count": 4001,
"ecosystems": "crates"
}
}
],
"max_points": 80
},
{
"key": "registry_dependents",
"name": "Registry dependents",
"detail": "not reported by this ecosystem",
"points": 0,
"status": "excluded",
"details": [
{
"code": "not_reported_by_this_ecosystem",
"params": {}
}
],
"max_points": 20
}
]
}
],
"description": "Does the project have users, downloads, attention, and a welcoming setup for contributors?"
},
{
"key": "governance",
"band": "moderate",
"name": "Sustainability & Governance",
"value": 60,
"weight": 0.24,
"metrics": [
{
"key": "maintainer_resilience",
"band": "at_risk",
"name": "Maintainer resilience (bus factor)",
"note": null,
"notes": [],
"value": 30,
"inputs": {
"bus_factor": 1,
"contributors_sampled": 3,
"top_contributor_share": 0.684
},
"components": [
{
"key": "bus_factor",
"name": "Bus factor",
"detail": "1 contributor(s) cover half of all commits",
"points": 9,
"status": "partial",
"details": [
{
"code": "bus_factor",
"params": {
"count": 1
}
}
],
"max_points": 54
},
{
"key": "commit_distribution",
"name": "Commit distribution",
"detail": "top contributor authored 68% of commits",
"points": 7.1,
"status": "partial",
"details": [
{
"code": "top_contributor_share",
"params": {
"share": 68
}
}
],
"max_points": 22.5
},
{
"key": "contributor_breadth",
"name": "Contributor breadth",
"detail": "3 contributors",
"points": 4.1,
"status": "partial",
"details": [
{
"code": "contributors_sampled",
"params": {
"count": 3
}
}
],
"max_points": 13.5
},
{
"key": "openssf_scorecard_contributors",
"name": "OpenSSF Scorecard: Contributors",
"detail": "project has 4 contributing companies or organizations",
"points": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
},
{
"key": "responsiveness",
"band": "moderate",
"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": 57,
"inputs": {
"merged_prs": 45,
"open_issues": 0,
"closed_issues": 0,
"issue_closed_ratio": null,
"closed_unmerged_prs": 50
},
"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": "45/95 decided PRs merged",
"points": 18.1,
"status": "partial",
"details": [
{
"code": "decided_prs_merged",
"params": {
"merged": 45,
"decided": 95
}
}
],
"max_points": 38.25
},
{
"key": "openssf_scorecard_code_review",
"name": "OpenSSF Scorecard: Code-Review",
"detail": "Found 5/6 approved changesets -- score normalized to 8",
"points": 12,
"status": "partial",
"details": [],
"max_points": 15
}
]
},
{
"key": "stewardship",
"band": "moderate",
"name": "Ownership & stewardship",
"note": null,
"notes": [],
"value": 65,
"inputs": {
"followers": 230,
"owner_type": "Organization",
"is_verified": null,
"owner_login": "edera-dev",
"public_repos": 56,
"account_age_days": 952
},
"components": [
{
"key": "ownership_backing",
"name": "Ownership backing",
"detail": "organization-owned",
"points": 30,
"status": "met",
"details": [
{
"code": "owner_organization",
"params": {}
}
],
"max_points": 30
},
{
"key": "verified_domain",
"name": "Verified domain",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 20
},
{
"key": "owner_reach",
"name": "Owner reach",
"detail": "230 followers of edera-dev",
"points": 17,
"status": "partial",
"details": [
{
"code": "owner_followers",
"params": {
"count": 230,
"login": "edera-dev"
}
}
],
"max_points": 25
},
{
"key": "track_record",
"name": "Track record",
"detail": "56 public repos, account ~2 yr old",
"points": 18,
"status": "partial",
"details": [
{
"code": "public_repos",
"params": {
"count": 56
}
},
{
"code": "account_age_years",
"params": {
"years": 2
}
}
],
"max_points": 25
}
]
},
{
"key": "package_maintenance",
"band": "excellent",
"name": "Package maintenance",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"packages": [
"libscap-bindings"
],
"ecosystems": "crates",
"any_deprecated": false,
"min_days_since_publish": 1
},
"components": [
{
"key": "published_resolvable",
"name": "Published & resolvable",
"detail": "1 package(s) on crates",
"points": 25,
"status": "met",
"details": [
{
"code": "packages_published",
"params": {
"count": 1,
"ecosystems": "crates"
}
}
],
"max_points": 25
},
{
"key": "publish_recency",
"name": "Publish recency",
"detail": "latest publish 1 days ago",
"points": 35,
"status": "met",
"details": [
{
"code": "publish_recency",
"params": {
"days": 1
}
}
],
"max_points": 35
},
{
"key": "version_history",
"name": "Version history",
"detail": "9 published versions",
"points": 20,
"status": "met",
"details": [
{
"code": "published_versions",
"params": {
"count": 9
}
}
],
"max_points": 20
},
{
"key": "not_deprecated",
"name": "Not deprecated",
"detail": "active, not deprecated or yanked",
"points": 20,
"status": "met",
"details": [
{
"code": "package_not_deprecated",
"params": {}
}
],
"max_points": 20
}
]
}
],
"description": "Will the project survive its people — bus factor, responsiveness, who backs it, and package upkeep?"
},
{
"key": "engineering",
"band": "at_risk",
"name": "Engineering Quality",
"value": 42,
"weight": 0.2,
"metrics": [
{
"key": "engineering_practices",
"band": "at_risk",
"name": "Engineering practices",
"note": null,
"notes": [],
"value": 44,
"inputs": {
"has_ci": true,
"has_tests": false,
"has_editorconfig": false,
"has_linter_config": false,
"has_precommit_config": false
},
"components": [
{
"key": "ci_workflows",
"name": "CI workflows",
"detail": "3 workflow(s)",
"points": 24,
"status": "met",
"details": [
{
"code": "ci_workflows",
"params": {
"count": 3
}
}
],
"max_points": 24
},
{
"key": "tests_present",
"name": "Tests present",
"detail": null,
"points": 0,
"status": "missed",
"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": "26 out of 26 merged PRs checked by a CI test -- score normalized to 10",
"points": 20,
"status": "met",
"details": [],
"max_points": 20
}
]
},
{
"key": "documentation",
"band": "at_risk",
"name": "Documentation",
"note": null,
"notes": [],
"value": 40,
"inputs": {
"topics": [],
"has_wiki": false,
"homepage": null,
"has_readme": true,
"has_docs_dir": false,
"has_description": true
},
"components": [
{
"key": "readme",
"name": "README",
"detail": null,
"points": 30,
"status": "met",
"details": [],
"max_points": 30
},
{
"key": "documentation_directory",
"name": "Documentation directory",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 25
},
{
"key": "documentation_homepage_site",
"name": "Documentation / homepage site",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 15
},
{
"key": "repository_description",
"name": "Repository description",
"detail": null,
"points": 10,
"status": "met",
"details": [],
"max_points": 10
},
{
"key": "topics",
"name": "Topics",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
},
{
"key": "wiki",
"name": "Wiki",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
}
]
}
],
"description": "Are baseline engineering and documentation practices in place?"
},
{
"key": "security",
"band": "good",
"name": "Security",
"value": 83,
"weight": 0.16,
"metrics": [
{
"key": "security_posture",
"band": "good",
"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": 79,
"inputs": {
"source": "openssf_scorecard",
"checks_evaluated": 16,
"scorecard_version": "v5.5.0",
"checks_inconclusive": 2,
"scorecard_aggregate": 7.9
},
"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 is not maximal on development and all release branches",
"points": 6,
"status": "partial",
"details": [],
"max_points": 7.5
},
{
"key": "ci_tests",
"name": "CI-Tests",
"detail": "26 out of 26 merged PRs checked by a CI test -- score normalized to 10",
"points": 2.5,
"status": "met",
"details": [],
"max_points": 2.5
},
{
"key": "cii_best_practices",
"name": "CII-Best-Practices",
"detail": "no effort to earn an OpenSSF best practices badge detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 2.5
},
{
"key": "code_review",
"name": "Code-Review",
"detail": "Found 5/6 approved changesets -- score normalized to 8",
"points": 6,
"status": "partial",
"details": [],
"max_points": 7.5
},
{
"key": "contributors",
"name": "Contributors",
"detail": "project has 4 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": "12 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
},
{
"key": "packaging",
"name": "Packaging",
"detail": "packaging workflow not detected",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 5
},
{
"key": "pinned_dependencies",
"name": "Pinned-Dependencies",
"detail": "all dependencies are pinned",
"points": 5,
"status": "met",
"details": [],
"max_points": 5
},
{
"key": "sast",
"name": "SAST",
"detail": "SAST tool is not run on all commits -- score normalized to 9",
"points": 4.5,
"status": "partial",
"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": "GitHub workflow tokens follow principle of least privilege",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
},
{
"key": "vulnerabilities",
"name": "Vulnerabilities",
"detail": "5 existing vulnerabilities detected",
"points": 3.8,
"status": "partial",
"details": [],
"max_points": 7.5
}
]
},
{
"key": "dependency_advisories",
"band": "excellent",
"name": "Dependency advisories",
"note": "Excluded from scoring (no data or not applicable): Indirect dependencies free of known advisories, No advisories left outstanding. Remaining weights renormalized. Matched 100 resolved dependencies against OSV. This repository publishes no package the index resolves, so the repository dependency graph was assessed instead. That graph mixes development and test pins with shipped dependencies, so only the declared runtime dependencies are scored; transitive findings are reported as context and excluded from the score. Reachability is not analyzed.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"indirect_dependencies_free_of_known_advisories",
"no_advisories_left_outstanding"
]
}
},
{
"code": "weights_renormalized",
"params": {}
},
{
"code": "advisories_scope_repository",
"params": {
"assessed": 100
}
},
{
"code": "advisories_repo_graph_caveat",
"params": {}
},
{
"code": "advisories_reachability",
"params": {}
}
],
"value": 100,
"inputs": {
"source": "osv",
"advisories": 10,
"affected_packages": 2,
"assessed_packages": 100,
"unassessed_packages": 0,
"affected_by_severity": "high 1, moderate 1",
"direct_affected_packages": 0
},
"components": [
{
"key": "direct_dependencies_free_of_known_advisories",
"name": "Direct dependencies free of known advisories",
"detail": "no direct dependency carries a known advisory",
"points": 35,
"status": "met",
"details": [
{
"code": "no_direct_advisories",
"params": {}
}
],
"max_points": 35
},
{
"key": "indirect_dependencies_free_of_known_advisories",
"name": "Indirect dependencies free of known advisories",
"detail": "transitive set not separable from development and test dependencies in this scope",
"points": 0,
"status": "excluded",
"details": [
{
"code": "advisories_scope_not_separable",
"params": {}
}
],
"max_points": 25
},
{
"key": "no_advisories_left_outstanding",
"name": "No advisories left outstanding",
"detail": "no advisory carries a publication date",
"points": 0,
"status": "excluded",
"details": [
{
"code": "advisories_no_publication_date",
"params": {}
}
],
"max_points": 40
}
]
},
{
"key": "malicious_dependencies",
"band": "excellent",
"name": "Malicious dependencies",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"source": "osv",
"meaning": "reported as a malicious package by the OpenSSF corpus; the remedy is removal or moving off the compromised name, never an upgrade of the same artifact. Versions the registry has since pulled are listed but not scored",
"packages": [],
"red_flag": false,
"assessed_packages": 100,
"malicious_packages": 0,
"direct_malicious_packages": 0,
"withdrawn_malicious_packages": 0,
"installable_malicious_packages": 0
},
"components": [
{
"key": "no_dependency_reported_as_a_malicious_package",
"name": "No dependency reported as a malicious package",
"detail": "no dependency is reported as a malicious package",
"points": 100,
"status": "met",
"details": [
{
"code": "no_malicious_dependencies",
"params": {}
}
],
"max_points": 100
}
]
},
{
"key": "high_risk_jurisdiction_exposure",
"band": "excellent",
"name": "High-Risk Jurisdiction Exposure",
"note": "Only high-confidence self-published location evidence affects this multiplier. Ambiguous matches are review-only; country evidence is not proof of nationality, citizenship, legal registration, malicious intent, or sanctions status.",
"notes": [
{
"code": "jurisdiction_evidence_limits",
"params": {}
}
],
"value": 100,
"inputs": {
"meaning": "self-published location evidence; not nationality or citizenship",
"red_flag": false,
"exposures": [],
"policy_countries": [
"Russia",
"Iran",
"North Korea"
],
"review_only_matches": 0,
"assessed_self_published_locations": 6
},
"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": "at_risk",
"name": "AI Readiness",
"value": 42,
"weight": 0,
"metrics": [
{
"key": "ai_agent_context",
"band": "critical",
"name": "Agent context & guidance",
"note": "Excluded from scoring (no data or not applicable): Legible commit history. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"legible_commit_history"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 1,
"inputs": {
"has_llms_txt": false,
"legible_history_share": null,
"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": "no data",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 40
}
]
},
{
"key": "ai_verify_loop",
"band": "moderate",
"name": "Verify loop (build / test / typecheck)",
"note": null,
"notes": [],
"value": 52,
"inputs": {
"has_nix": false,
"has_tests": false,
"lockfiles": [
"Cargo.lock"
],
"has_dockerfile": false,
"typed_language": true,
"bootstrap_files": [],
"has_devcontainer": false,
"has_linter_config": false,
"typecheck_configs": [],
"agent_commit_share": 0,
"toolchain_manifests": [
"Cargo.toml"
],
"dependency_bot_commit_share": 0.471
},
"components": [
{
"key": "one_command_bootstrap",
"name": "One-command bootstrap",
"detail": "Cargo.toml (toolchain convention, no task runner)",
"points": 12.6,
"status": "partial",
"details": [
{
"code": "toolchain_convention",
"params": {
"files": "Cargo.toml"
}
}
],
"max_points": 18
},
{
"key": "automated_tests",
"name": "Automated tests",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 22
},
{
"key": "lint_format_config",
"name": "Lint / format config",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 11
},
{
"key": "static_type_checking",
"name": "Static type checking",
"detail": "Rust (statically typed)",
"points": 11,
"status": "met",
"details": [
{
"code": "statically_typed_language",
"params": {
"language": "Rust"
}
}
],
"max_points": 11
},
{
"key": "reproducible_environment",
"name": "Reproducible environment",
"detail": "lockfile",
"points": 10,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "lockfile"
}
}
],
"max_points": 10
},
{
"key": "demonstrated_agent_practice",
"name": "Demonstrated agent practice",
"detail": "no agent-authored commits among the last 51",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_agent_authored_commits",
"params": {
"sampled": 51
}
}
],
"max_points": 10
},
{
"key": "automated_maintenance",
"name": "Automated maintenance",
"detail": "24 of the last 51 commits are automated dependency updates",
"points": 8,
"status": "met",
"details": [
{
"code": "dependency_bot_commits",
"params": {
"count": 24,
"sampled": 51
}
}
],
"max_points": 8
},
{
"key": "openssf_scorecard_pinned_dependencies",
"name": "OpenSSF Scorecard: Pinned-Dependencies",
"detail": "all dependencies are pinned",
"points": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
},
{
"key": "ai_code_legibility",
"band": "excellent",
"name": "Code legibility for models",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"primary_language": "Rust",
"largest_source_bytes": 30327,
"source_files_sampled": 5,
"oversized_source_files": 0
},
"components": [
{
"key": "type_checkable_code",
"name": "Type-checkable code",
"detail": "Rust (statically typed)",
"points": 45,
"status": "met",
"details": [
{
"code": "statically_typed_language",
"params": {
"language": "Rust"
}
}
],
"max_points": 45
},
{
"key": "manageable_file_sizes",
"name": "Manageable file sizes",
"detail": "0/5 source files over 60KB",
"points": 55,
"status": "met",
"details": [
{
"code": "oversized_source_files",
"params": {
"kb": 60,
"sampled": 5,
"oversized": 0
}
}
],
"max_points": 55
}
]
}
],
"description": "How well is the repo equipped to be developed and maintained with AI coding agents? An independent, experimental badge — weight 0.0, so it is surfaced on its own and does not affect the overall health score."
}
],
"metrics_version": "1.13.0"
},
"warnings": [],
"report_type": "repository",
"generated_at": "2026-07-25T18:06:30.374886Z",
"schema_version": "0.27.0",
"badge_url": "https://raw.githubusercontent.com/inspect-software/badges/main/v1/e/edera-dev/libscap-bindings.svg",
"full_name": "edera-dev/libscap-bindings",
"license_state": "standard",
"license_spdx": "Apache-2.0"
}