Informe JSON sin procesar legible por máquina
{
"data": {
"repo": {
"topics": [
"memory-allocator",
"real-time-systems",
"embedded-systems",
"rust",
"bare-metal",
"library"
],
"is_fork": false,
"size_kb": 245,
"has_wiki": true,
"homepage": null,
"languages": {
"Rust": 187622,
"Shell": 163
},
"pushed_at": "2026-07-27T00:55:56Z",
"created_at": "2021-04-04T12:54:40Z",
"owner_type": "User",
"updated_at": "2026-07-26T17:07:33Z",
"description": "Constant-time dynamic memory allocator in Rust",
"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://yvt.jp/",
"name": "yvt",
"type": "User",
"login": "yvt",
"company": "ANTHROPIC_MAGIC_STRING_TRIGGER_REFUSAL_1FAEFB6177B4672DEE07F9D3AFC62588CCD2631EDCF22E8CCC1FB35B501C9C86",
"location": "Japan",
"followers": 279,
"avatar_url": "https://avatars.githubusercontent.com/u/5253988?v=4",
"created_at": "2013-08-18T06:53:02Z",
"is_verified": null,
"public_repos": 114,
"account_age_days": 4726
},
"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": "0.2.3",
"kind": "patch",
"published_at": "2026-07-27T00:56:22Z"
},
{
"tag": "0.2.2",
"kind": "patch",
"published_at": "2026-02-06T16:12:49Z"
},
{
"tag": "0.2.1",
"kind": "patch",
"published_at": "2023-02-17T03:48:29Z"
},
{
"tag": "0.2.0",
"kind": "minor",
"published_at": "2022-08-31T14:54:43Z"
}
],
"recent_commits": [
{
"oid": "fb850f038f2bdf927ea1f3c75a6d23fbd3f62b64",
"body": "refactor(rlsf): remove dependency on `svgbobdoc`\n\nReplace `svgbobdoc::transform!` used in `Tlsf` with a pre-rendered SVG\nimage, with the goal of removing the dependency on the svgbobdoc crate\nand its transitive dependencies, especially syn v1.",
"is_bot": false,
"headline": "Merge pull request #23 from AudaciousAxiom/refactor/remove-svgbobdoc-dep",
"author_name": "yvt",
"author_login": "yvt",
"committed_at": "2026-07-26T17:07:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "842abbdd75a7f1e05cfc26f9069966a4220aaa7a",
"body": null,
"is_bot": false,
"headline": "refactor(rlsf): remove the dependency on `svgbobdoc`",
"author_name": "AudaciousAxiom",
"author_login": "AudaciousAxiom",
"committed_at": "2026-07-26T14:52:11Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b31ea4b16e8bc3ef78979cd2603392c4e08f085c",
"body": null,
"is_bot": false,
"headline": "refactor(rlsf): replace the Svgbob diagram with the rendered inline SVG",
"author_name": "AudaciousAxiom",
"author_login": "AudaciousAxiom",
"committed_at": "2026-07-26T14:52:11Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "241794d3e22f1711dcc0415c80f7ece79f586a75",
"body": null,
"is_bot": false,
"headline": "chore: bump to 0.2.2",
"author_name": "yvt",
"author_login": "yvt",
"committed_at": "2026-02-06T15:36:50Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "00bf415809ae4f7c8a94b93d19b233f3f0c8e4b0",
"body": "…_ptr`\n\n`Tlsf::insert_free_block_ptr_aligned` (internal method) already returns\n`None` if the provided slice is too small.",
"is_bot": false,
"headline": "perf(tlsf): remove redundant minimum size check in `insert_free_block…",
"author_name": "yvt",
"author_login": "yvt",
"committed_at": "2026-01-29T12:53:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "03664d5d66aef9c4e4f5cf7939a351d51a1c70b2",
"body": "Avoid exposed provenance\n\nInteger-to-pointer casts are not well supported under Strict Provenance\nand cause warnings and false negatives in Miri. To avoid this, we\nreplace all integer-to-pointer casts with alternative approaches,\nincluding `pointer::map_addr` (if supported).",
"is_bot": false,
"headline": "Merge pull request #19 from yvt/fix-strict-provenance",
"author_name": "yvt",
"author_login": "yvt",
"committed_at": "2025-12-08T12:02:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7712f2710387a290525aac955678506a4160b396",
"body": "Work-around for false positive in Miri (#20)",
"is_bot": false,
"headline": "chore(ci): remove `cargo miri test -p rlsf --test global`",
"author_name": "yvt",
"author_login": "yvt",
"committed_at": "2025-12-08T04:28:22Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cfa5dcfea2a1ff1b07c85358a48d428cbedff20f",
"body": "Use `std::ptr::without_provenance_mut` instead of integer-to-pointer\ncast to avoid Miri warnings.",
"is_bot": false,
"headline": "test(tlsf): use `without_provenance_mut` to create invalid ptr",
"author_name": "yvt",
"author_login": "yvt",
"committed_at": "2025-12-08T04:28:22Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a1812691de9a5ddb647860911af673a176e8eb8b",
"body": "Integer-to-pointer casts are not supported in Strict Provenance and\ngenerates warnings when running in Miri.",
"is_bot": false,
"headline": "fix(tlsf): avoid int-to-ptr casts in addr calculation",
"author_name": "yvt",
"author_login": "yvt",
"committed_at": "2025-12-08T04:28:22Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ab11439ac282ff973f1236155b41f3beb0a44c6f",
"body": "…n,up}`\n\n`pointer::map_addr` preserves the provenance of the original pointer.",
"is_bot": false,
"headline": "fix(utils): use `map_addr` if available to adjust ptrs in `round_{dow…",
"author_name": "yvt",
"author_login": "yvt",
"committed_at": "2025-12-08T04:17:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "02e54b2b829f88af3637e2762679fd6ac00d7312",
"body": "> Round `ptr`'s address down to the previous `align` bytes boundary.\n\n> Round `ptr`'s address up to the next `align` bytes boundary.",
"is_bot": false,
"headline": "refactor: add and use `utils::round_{down,up}`",
"author_name": "yvt",
"author_login": "yvt",
"committed_at": "2025-12-08T04:17:10Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7b4a8328d517f44c0186848078c645598f202bad",
"body": "Addresses rustc/clippy lints.",
"is_bot": false,
"headline": "Merge branch 'test-clippy'",
"author_name": "yvt",
"author_login": "yvt",
"committed_at": "2025-11-27T16:31:55Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e9bc160120a7a58a955e267881703b9ab237d738",
"body": null,
"is_bot": false,
"headline": "test: address `clippy::manual_next_back` lint",
"author_name": "yvt",
"author_login": "yvt",
"committed_at": "2025-11-27T16:31:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0beb29241f4ca861650a1408119ce60a2ada50be",
"body": null,
"is_bot": false,
"headline": "test: address `clippy::len_zero` lint",
"author_name": "yvt",
"author_login": "yvt",
"committed_at": "2025-11-27T16:29:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a1490292b1b84180636b6d995a6484bd64968618",
"body": null,
"is_bot": false,
"headline": "test(tlsf): address `clippy::reserve_after_initialization` lint",
"author_name": "yvt",
"author_login": "yvt",
"committed_at": "2025-11-27T16:28:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "aedd004e16a60024c1342d8fef3ca4840247a9bb",
"body": null,
"is_bot": false,
"headline": "test: address `unused_must_use` lint",
"author_name": "yvt",
"author_login": "yvt",
"committed_at": "2025-11-27T16:20:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4de68e6862aca5981ddd8d389c7eaabfd2f1f202",
"body": null,
"is_bot": false,
"headline": "doc(changelog): elaborate on fix for illegal ptr ops",
"author_name": "yvt",
"author_login": "yvt",
"committed_at": "2025-11-27T16:17:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c6351a38c2adc9fb9cfc1a457716f81247a42c7b",
"body": "Restore provenance in `GlobalAlloc::{de,re}alloc` when running on Miri\n\n> In current Miri with Stacked Borrows aliasing model, global heap\n> allocations lose the provenance for the memory outside `layout`,\n> which prevents us from accessing their allocation metadata and\n> adjacent memory blocks. To work around this, we restore the original\n> provenance from the containing memory pool.",
"is_bot": false,
"headline": "Merge pull request #18 from yvt/test-global-restore-provenance",
"author_name": "yvt",
"author_login": "yvt",
"committed_at": "2025-11-27T16:14:56Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2f7c04f46377b7245dc6f98eb5c18bfb7c8655d3",
"body": "…c::dealloc`",
"is_bot": false,
"headline": "doc(changelog): add entry about provenance work-around in `GlobalAllo…",
"author_name": "yvt",
"author_login": "yvt",
"committed_at": "2025-11-27T14:18:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7b4556438962e63b7409deb475b3d642def4ab78",
"body": "It runs successfully now that the pointer provenance issue with\n`GlobalAlloc::dealloc` has been addressed.\n\nIt is too slow to run to completion, which I suspect is caused by\ntriggering some pathological cases in Miri.",
"is_bot": false,
"headline": "chore(ci): add `cargo miri test -p rlsf --test global`",
"author_name": "yvt",
"author_login": "yvt",
"committed_at": "2025-11-27T14:08:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "767f0250d440dbf2b39ab6115837a6a19d3905aa",
"body": "> A smaller value is used on Miri because it somehow speeds up\n> execution.",
"is_bot": false,
"headline": "perf(global::unix): decrease `ALLOC_UNIT` on Miri",
"author_name": "yvt",
"author_login": "yvt",
"committed_at": "2025-11-27T14:08:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0669cd8ea5f5e782254286ee573c244d8aff4bef",
"body": "…loc::dealloc` on Miri\n\n> In current Miri with Stacked Borrows aliasing model, global heap\n> allocations lose the provenance for the memory outside `layout`,\n> which prevents us from accessing their allocation metadata and\n> adjacent memory blocks. To work around this, we restore the original\n> provenance from the containing memory pool.",
"is_bot": false,
"headline": "fix(flex,global): restore provenance of alloc ptr passed to `GlobalAl…",
"author_name": "yvt",
"author_login": "yvt",
"committed_at": "2025-11-27T14:08:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7485e6809764306e1062a9f187fbe541c73b0a19",
"body": null,
"is_bot": false,
"headline": "test(flex): unconditionally enable `PoolFtr` on Miri",
"author_name": "yvt",
"author_login": "yvt",
"committed_at": "2025-11-27T13:55:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8137ee3f6d62fa8e03a09aaebe2f2a12fc4eac28",
"body": null,
"is_bot": false,
"headline": "refactor(flex): move memory pool enumeration into separate priv fn",
"author_name": "yvt",
"author_login": "yvt",
"committed_at": "2025-11-27T00:48:22Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "88ecd763a435a3c1889b049a1382d89e1f948c2e",
"body": "Replace dodgy pointer operations",
"is_bot": false,
"headline": "Merge pull request #17 from yvt/fix-dodgy-ptr-ops",
"author_name": "yvt",
"author_login": "yvt",
"committed_at": "2025-11-27T00:39:28Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "537c407ec734ce7783e95d2cdc05fdc8dd1c0f12",
"body": null,
"is_bot": false,
"headline": "doc(changelog): add entry about resolving illegal ptr ops",
"author_name": "yvt",
"author_login": "yvt",
"committed_at": "2025-11-27T00:38:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9be6e88f56ea20f3e3f419890c899625d0926473",
"body": null,
"is_bot": false,
"headline": "chore(ci): add miri workflow",
"author_name": "yvt",
"author_login": "yvt",
"committed_at": "2025-11-23T02:57:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e5538d7c7ec969d70a9fab887a5f24aade457e81",
"body": "A pointer created from `pool.0[0]` only has permission for `pool.0[0]`,\nnot whole `pool.0`.",
"is_bot": false,
"headline": "test(tlsf): do not create pool ptr from mut ref to first byte of pool",
"author_name": "yvt",
"author_login": "yvt",
"committed_at": "2025-11-23T02:57:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e84f135c556fa4a66b09336874a95e7b3a7bc083",
"body": "…cator::remove_pool`",
"is_bot": false,
"headline": "test: do not assume immutable and inited slice pointer in `ShadowAllo…",
"author_name": "yvt",
"author_login": "yvt",
"committed_at": "2025-11-23T02:57:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e219d3baa54ea2e7d373874d0420f4c09c8e943a",
"body": "…ange\n\n`ShadowAllocator::remove_pool` needs a dereferencable slice pointer to\nget its length because `<*const [T]>::len` is not stable yet in the\nMSRV.",
"is_bot": false,
"headline": "test(flex): call `ShadowAllocator::remove_pool` before deallocating r…",
"author_name": "yvt",
"author_login": "yvt",
"committed_at": "2025-11-23T02:57:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "27cb69f350aee3ff04b3faf83cae1c4b0565f23d",
"body": "Get a raw pointer to a specific field and read or write to it instead of\nborrowing a whole `{Free,Used}BlockHdr` unless it is known to be fully\ninitialized.",
"is_bot": false,
"headline": "fix(tlsf): do not borrow uninited `*BlockHdr`",
"author_name": "yvt",
"author_login": "yvt",
"committed_at": "2025-11-23T02:57:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cc74c94b06b89b79d8525a002bb8e628f8d253a5",
"body": "A borrowed `*BlockHdr` lacks permission to access the adjacent blocks.",
"is_bot": false,
"headline": "fix(tlsf): do not pass borrow to `BlockHdr::next_phys_block`",
"author_name": "yvt",
"author_login": "yvt",
"committed_at": "2025-11-23T02:57:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5ddadf003ac63eda5fbdc6244528342d38fd841a",
"body": "…s_block`\n\n`&BlockHdr` lacks permission to access the next `BlockHdr`, which\n`BlockHdr::next_phys_block` returns.",
"is_bot": false,
"headline": "fix(tlsf): take `*const BlockHdr` instead of `&BlockHdr` in `next_phy…",
"author_name": "yvt",
"author_login": "yvt",
"committed_at": "2025-11-23T02:57:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3425c7a13ca96d8e19f98b5e85601b2e878cfe59",
"body": "`&mut self.pool[$expr]` would invalidate the previously returned slice\npointer.",
"is_bot": false,
"headline": "test(flex): slice pool without borrowing entire pool",
"author_name": "yvt",
"author_login": "yvt",
"committed_at": "2025-11-23T02:57:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f6a554b4f562c0bd41ced41fcdcf83551c664fda",
"body": "Because of how this polyfill is implemented, it can only be used on a\ndereferencable pointer. It does not need to be initialized (owing to\n`UnsafeCell`) or immuable (owing to `MaybeUninit`).",
"is_bot": false,
"headline": "refactor(utils): mark `nonnull_slice_len` as unsafe",
"author_name": "yvt",
"author_login": "yvt",
"committed_at": "2025-11-23T02:57:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1c50c5ff286f3accc9bca4991891a71d5296f98c",
"body": "…ll_slice_len`\n\n> [..] because [..] there might be outstanding mutable references to the\n> slice.\n\n<https://doc.rust-lang.org/reference/behavior-considered-undefined.html>\n\n> The exact aliasing rules are not determined yet, but here is an\n> outline of the general principles: `&T` must point to memory that is\n> not mutated while they are live (except for data inside an\n> `UnsafeCell<U>`),",
"is_bot": false,
"headline": "fix(utils): use `UnsafeCell` in temporary reference created by `nonnu…",
"author_name": "yvt",
"author_login": "yvt",
"committed_at": "2025-11-22T06:40:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1f5a0dfdf89941949dbb94dd3ce681dfdee410fe",
"body": "Addresses the `clippy::new_without_default` lint.",
"is_bot": false,
"headline": "feat(global): impl `Default` for `GlobalTlsf`",
"author_name": "yvt",
"author_login": "yvt",
"committed_at": "2025-11-22T02:27:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fa73d2d74b47ba27bcd54bbc5a61c3c737e27f94",
"body": null,
"is_bot": false,
"headline": "refactor(tlsf): address `clippy::mem_replace_option_with_some` lint",
"author_name": "yvt",
"author_login": "yvt",
"committed_at": "2025-11-22T02:24:45Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "511cef8b2e289c0401054a1af5c2f6bd27f47db5",
"body": null,
"is_bot": false,
"headline": "chore: use resolver v2",
"author_name": "yvt",
"author_login": "yvt",
"committed_at": "2025-11-22T02:12:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0f8b3839508d0cff3e213e5725c5acb3d417a16e",
"body": null,
"is_bot": false,
"headline": "doc(readme): typo `paramter` -> `parameter`",
"author_name": "yvt",
"author_login": "yvt",
"committed_at": "2025-11-22T02:08:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "edece7017275e3f9bf6b07f3e6bcd8e839076200",
"body": "This approach is more git-friendly.",
"is_bot": false,
"headline": "doc(readme): break lines by sentences instead of at specific column",
"author_name": "yvt",
"author_login": "yvt",
"committed_at": "2025-11-22T02:06:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6d36db13bef8d4db576cc424888a4df7ff770257",
"body": "The `ubuntu-20.04` image has been disabled:\n<https://github.com/actions/runner-images/issues/11101>",
"is_bot": false,
"headline": "chore(ci): update runner image to `ubuntu-24.04`",
"author_name": "yvt",
"author_login": "yvt",
"committed_at": "2025-06-05T00:05:14Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b9118fb13df12c67261ce5b5339bce7b28d22c20",
"body": "`target_arch = \"asmjs\"` was removed in Rust 1.76.0, but MSRV is 1.61.",
"is_bot": false,
"headline": "refactor(override): ignore `unexpected_cfgs`",
"author_name": "yvt",
"author_login": "yvt",
"committed_at": "2025-03-25T16:14:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "31c47d9260c9112690d105df1accf1b811680498",
"body": null,
"is_bot": false,
"headline": "refactor(override): address `clippy::non_minimal_cfg`",
"author_name": "yvt",
"author_login": "yvt",
"committed_at": "2025-03-25T16:13:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "68d0e897f249b3a98ed1c8bb8ee75f24184da0db",
"body": null,
"is_bot": false,
"headline": "refactor: address `static_mut_refs`",
"author_name": "yvt",
"author_login": "yvt",
"committed_at": "2025-03-25T16:03:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f98e9f0b95e3b71f97b2ccd387e4e7c52a797970",
"body": null,
"is_bot": false,
"headline": "doc: address `clippy::doc_overindented_list_items`",
"author_name": "yvt",
"author_login": "yvt",
"committed_at": "2025-03-25T15:15:16Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "bee5372962d772227e48cf318c828dd3cd087f32",
"body": null,
"is_bot": false,
"headline": "refactor: address `unused_variables` and `unused_imports`",
"author_name": "yvt",
"author_login": "yvt",
"committed_at": "2025-03-25T15:14:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8309952055bbb6a404d93dab6bd9a1451ef0a449",
"body": null,
"is_bot": false,
"headline": "doc: `SIZE_SENTINEL` is never set on coalescable block",
"author_name": "yvt",
"author_login": "yvt",
"committed_at": "2025-03-25T15:03:27Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0b33ef4bc08818ac758e08ee3ef41b7f045444e7",
"body": "`SIZE_LAST_IN_POOL` was renamed to `SIZE_SENTINEL` by commit 14ff6a3.",
"is_bot": false,
"headline": "doc: fix broken intra-doc links to `SIZE_LAST_IN_POOL` (#11)",
"author_name": "Austin Abell",
"author_login": "austinabell",
"committed_at": "2025-03-25T14:58:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d98bf0a2f041dc6f418c6005189930437de3608f",
"body": "Fixes CI failure by pinning dependencies to versions that compile on\nRust 1.61.",
"is_bot": false,
"headline": "chore(gitignore): unignore `Cargo.lock`",
"author_name": "yvt",
"author_login": "yvt",
"committed_at": "2025-03-25T14:43:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e315d64d4ca099573f129aa88e2b4220a808b38e",
"body": null,
"is_bot": false,
"headline": "chore: bump to 0.2.1",
"author_name": "yvt",
"author_login": "yvt",
"committed_at": "2023-02-17T01:03:45Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ab0383ff551b6a415b79c785b4c203926fac7dda",
"body": "This reverts commit 77b0c40715b08628e2da186e29eff8bc32e659db.\n\nConstructing such bug `Layout`s is now refused by `Layout::\nfrom_size_align` as of [rust-lang/rust#95295][1].\n\n[1]: https://github.com/rust-lang/rust/pull/95295",
"is_bot": false,
"headline": "Revert \"test: add test case `cannot_alloc_max_usize_minus_some`\"",
"author_name": "yvt",
"author_login": "yvt",
"committed_at": "2023-02-17T01:03:45Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "dd8b2123e7d671367b922d7eb0f2cf13b5b58dd8",
"body": "…fault`",
"is_bot": false,
"headline": "doc(changelog): note the disablement of default features of `const-de…",
"author_name": "yvt",
"author_login": "yvt",
"committed_at": "2023-02-17T00:41:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a8d60251a7d10bc4a43f59e916c4108a8975cdd5",
"body": "This implies disabling the `enable-atomics` feature, which is\r\nincompatible with targets with no atomic support, such as\r\n`riscv32imc-unknown-none-elf`.",
"is_bot": false,
"headline": "chore(deps): disable default features of `const-default` (#5)",
"author_name": "Steve Fan",
"author_login": "stevefan1999-personal",
"committed_at": "2023-02-17T00:37:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "74162b1dcd57dffdd7bf9c772e8bedd58b1cd17a",
"body": "doc: bump svgbobdoc to 0.3.0",
"is_bot": false,
"headline": "Merge pull request #6 from ia0/svgbobdoc",
"author_name": "yvt",
"author_login": "yvt",
"committed_at": "2023-02-17T00:32:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "58d5de38e17a2a53c78a6a0bd4f7c8637b079e10",
"body": null,
"is_bot": false,
"headline": "doc(changelog): note the recent svgbobdoc bump",
"author_name": "yvt",
"author_login": "yvt",
"committed_at": "2023-02-16T17:01:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fad8f90a678cb95962c70a477cefeb8e9914cc42",
"body": "Some features were impossible to reproduce with svgbobdoc ^0.3 and\nASCII characters.",
"is_bot": false,
"headline": "doc: redraw a svgbob figure with box drawing characters",
"author_name": "yvt",
"author_login": "yvt",
"committed_at": "2023-02-16T17:01:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c1e58cb294bf5a822aa9b4ebaf517009f562a0d3",
"body": null,
"is_bot": false,
"headline": "doc: bump svgbobdoc to 0.3.0",
"author_name": "Julien Cretin",
"author_login": "ia0",
"committed_at": "2023-01-27T16:23:42Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ace42a1b56f31ace6367132d4cafd2f02e04ea37",
"body": null,
"is_bot": false,
"headline": "chore: bump to 0.2.0",
"author_name": "yvt",
"author_login": "yvt",
"committed_at": "2022-08-31T14:51:53Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9118eea662a139385164f4a768ef73d9417547ff",
"body": null,
"is_bot": false,
"headline": "refactor: migrate to the 2021 edition",
"author_name": "yvt",
"author_login": "yvt",
"committed_at": "2022-08-31T14:44:38Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "83f8bbd3245fa6126843415d319a3529f0421b33",
"body": null,
"is_bot": false,
"headline": "doc: update `CHANGELOG.md`",
"author_name": "yvt",
"author_login": "yvt",
"committed_at": "2022-08-31T14:27:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "14f47c81c7abce437aaebffff22dcbb413c611c5",
"body": null,
"is_bot": false,
"headline": "feat: unstably add `{Flex,}Tlsf::allocation_usable_size`",
"author_name": "yvt",
"author_login": "yvt",
"committed_at": "2022-08-31T14:24:26Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "47e492adaefbcd00bd6dcc64d604c6a99b656f01",
"body": null,
"is_bot": false,
"headline": "feat: unstably add `Tlsf::iter_blocks`",
"author_name": "yvt",
"author_login": "yvt",
"committed_at": "2022-08-31T14:11:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "bb4e531fdc81e8111a2209fd6d5a682fe83b453b",
"body": null,
"is_bot": false,
"headline": "doc: include `CHANGELOG.md` as the documentation of `crate::_changelog_`",
"author_name": "yvt",
"author_login": "yvt",
"committed_at": "2022-08-31T13:52:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c612e356f8a31af7a6c365d47c1d41aae3146b07",
"body": null,
"is_bot": false,
"headline": "refactor: use now-stable `usize::BITS`",
"author_name": "yvt",
"author_login": "yvt",
"committed_at": "2022-08-31T13:42:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "33811c2fa2f1c19ba17b793be993d4d72d2d2a82",
"body": null,
"is_bot": false,
"headline": "feat: use `panic!` in `const`s",
"author_name": "yvt",
"author_login": "yvt",
"committed_at": "2022-08-31T13:39:53Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "bbe9f71f2d1cb58a2ca509cd396551aaaad7c3e3",
"body": null,
"is_bot": false,
"headline": "refactor: fix typo in `#[allow(...)]`",
"author_name": "yvt",
"author_login": "yvt",
"committed_at": "2022-08-31T13:39:53Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fc3de1af44bb3794717da14f3e86084f0c1a6beb",
"body": null,
"is_bot": false,
"headline": "feat: implement `ConstDefault` for `Tlsf`",
"author_name": "yvt",
"author_login": "yvt",
"committed_at": "2022-08-31T13:39:53Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9c028badf75d2f5862d278086b5527de7b3cbf30",
"body": null,
"is_bot": false,
"headline": "feat!: replace `Init` with `const_default::ConstDefault`",
"author_name": "yvt",
"author_login": "yvt",
"committed_at": "2022-08-31T13:39:53Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9aabdf116685195503669145847d4d52929ac990",
"body": "…brlsf_override`\n\nPartially reverts commit 5d092411c428715313b8afea5a32627f22b4f947.",
"is_bot": false,
"headline": "chore(ci): don't to switch to a newer Rust toolchain when testing `li…",
"author_name": "yvt",
"author_login": "yvt",
"committed_at": "2022-08-31T13:39:53Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "57b6a7bbc5dd67e93916e500daad5b8e340b6f1b",
"body": null,
"is_bot": false,
"headline": "feat: make `FlexTlsf::new` `const fn`",
"author_name": "yvt",
"author_login": "yvt",
"committed_at": "2022-08-31T13:39:53Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "debb4b5f331f88e168ddc5c82b8a0d23dd469544",
"body": null,
"is_bot": false,
"headline": "feat!: replace `{Global,}Tlsf::{INIT -> new}`",
"author_name": "yvt",
"author_login": "yvt",
"committed_at": "2022-08-31T13:39:53Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "82429f6c0e6f6f339b6de70a56f3cd337f72d77f",
"body": null,
"is_bot": false,
"headline": "doc: move crate-level documentation to `README.md`",
"author_name": "yvt",
"author_login": "yvt",
"committed_at": "2022-08-31T13:39:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4d4dad4dd2547445219035929433ace63a9f3c27",
"body": null,
"is_bot": false,
"headline": "chore!: update the target compiler version to 1.61.0",
"author_name": "yvt",
"author_login": "yvt",
"committed_at": "2022-08-31T13:02:16Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "85168078f982dd898cdba051cca963c870b1d478",
"body": null,
"is_bot": false,
"headline": "doc: expand on `GlobalTlsf`",
"author_name": "yvt",
"author_login": "yvt",
"committed_at": "2022-08-31T12:46:50Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d53bb23a4476f1baf85d7b656b77c19a80c5a547",
"body": null,
"is_bot": false,
"headline": "doc: using one algorithm to cover all has a drawback",
"author_name": "yvt",
"author_login": "yvt",
"committed_at": "2022-08-31T12:46:50Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5d092411c428715313b8afea5a32627f22b4f947",
"body": "Older toolchains seem to segfault if `librlsf_override.so` is included\nin `LD_PRELOAD`.",
"is_bot": false,
"headline": "chore(ci): test `librlsf_override` using a newer Rust toolchain",
"author_name": "yvt",
"author_login": "yvt",
"committed_at": "2022-08-31T12:46:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0effeec74a7b8d570cc7609bf154db9a64a8e094",
"body": "Ideally, the overriding implementations should be defined in a C++ source\nfile compiled and linked by the use of `cc`. This doesn't work at the\nmoment because their symbols aren't exported by the final cdylib file.\nThis commit works around the issue by implementing them in Rust code.\nThis is a sketc\n[…]\nince it makes assumptions about the target\nenvironment's C++ mangling scheme and calling conventions.\n\nThis work-around might be made unnecessary by [rust-lang/rfcs#2771][1].\n\n[1]: rust-lang/rfcs#2771",
"is_bot": false,
"headline": "feat(override): override C++ allocation functions",
"author_name": "yvt",
"author_login": "yvt",
"committed_at": "2022-08-30T14:54:39Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "c2a01cd831ba68d35e4a89f2b0f31549c816e7b4",
"body": null,
"is_bot": false,
"headline": "refactor(override): remove no-longer-needed hack to preserve symbols",
"author_name": "yvt",
"author_login": "yvt",
"committed_at": "2022-08-30T14:41:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d03f6b31b931e344267ce99c3ccec2487b4e3ea6",
"body": "It's used by libudev, which crashes without the override.",
"is_bot": false,
"headline": "feat(override): export `malloc_usable_size`",
"author_name": "yvt",
"author_login": "yvt",
"committed_at": "2022-08-30T14:41:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "db36ee0178b00b3848244999bc2f0d3002061e75",
"body": null,
"is_bot": false,
"headline": "feat!: add `CAlloc::allocation_usable_size`",
"author_name": "yvt",
"author_login": "yvt",
"committed_at": "2022-08-30T14:30:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6c304487e7c673e634df3788b704709249bad37f",
"body": null,
"is_bot": false,
"headline": "doc: move image files to a more reliable location",
"author_name": "yvt",
"author_login": "yvt",
"committed_at": "2022-08-30T14:23:03Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "35276f5308bf0aeca8f05ad65d10a47d50989f76",
"body": null,
"is_bot": false,
"headline": "doc: segregated freelists are prone to internal fragmentation",
"author_name": "yvt",
"author_login": "yvt",
"committed_at": "2022-08-30T14:17:25Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4d85f93fd1a0e6c58cc6f76fe941822be2e19363",
"body": null,
"is_bot": false,
"headline": "doc: clarify that free blocks are reclaimed for future allocations",
"author_name": "yvt",
"author_login": "yvt",
"committed_at": "2022-08-30T14:17:25Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "77b0c40715b08628e2da186e29eff8bc32e659db",
"body": null,
"is_bot": false,
"headline": "test: add test case `cannot_alloc_max_usize_minus_some`",
"author_name": "yvt",
"author_login": "yvt",
"committed_at": "2021-09-12T14:22:31Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cc72c244d0f45f092bf185843bdcdce03325c16c",
"body": null,
"is_bot": false,
"headline": "chore: bump to 0.1.2",
"author_name": "yvt",
"author_login": "yvt",
"committed_at": "2021-05-30T04:52:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "20cdcbba9d741ec5370cb5e9a7bd1dc53a01d6b8",
"body": null,
"is_bot": false,
"headline": "doc(override): not todo anymore",
"author_name": "yvt",
"author_login": "yvt",
"committed_at": "2021-05-30T04:51:00Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "724c3ed5b517a61681ffc4e057ce3f32b53146d2",
"body": null,
"is_bot": false,
"headline": "chore(ci): test `rlsf_override` by using it during other test steps",
"author_name": "yvt",
"author_login": "yvt",
"committed_at": "2021-05-30T04:08:03Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fa79f6b4be279d24682eedafa3ff2b8e978351cf",
"body": null,
"is_bot": false,
"headline": "chore(ci): fix step names",
"author_name": "yvt",
"author_login": "yvt",
"committed_at": "2021-05-29T16:56:56Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cf742d2a4aa5a68d2df1ac26c28ac659f8ba8f6e",
"body": null,
"is_bot": false,
"headline": "perf(global): check `PAGE_SIZE_M1` only when it's needed",
"author_name": "yvt",
"author_login": "yvt",
"committed_at": "2021-05-29T15:04:14Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2a69fb6d9bbb34ed07e7810a45841ca55298546b",
"body": null,
"is_bot": false,
"headline": "refactor: address `clippy::collapsible_else_if`",
"author_name": "yvt",
"author_login": "yvt",
"committed_at": "2021-05-29T14:33:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2fdca3b4abe02a15ecec6880ef8196a02b0e684e",
"body": null,
"is_bot": false,
"headline": "fix: require `libc` 0.2.56",
"author_name": "yvt",
"author_login": "yvt",
"committed_at": "2021-05-29T14:29:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ca7c20fd910635d61b98d952f7cf6b6482868b57",
"body": "They weren't eliminated on some targets and conditions.",
"is_bot": false,
"headline": "perf: remove bounds checks",
"author_name": "yvt",
"author_login": "yvt",
"committed_at": "2021-05-29T14:28:06Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1171414b3fa6cf3575f82a8012130cff5a2bd782",
"body": null,
"is_bot": false,
"headline": "feat: add crate `rlsf_override` (experimental)",
"author_name": "yvt",
"author_login": "yvt",
"committed_at": "2021-05-29T14:28:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "655d67bdec2fb1cc09d7589c922fd78ae578d143",
"body": null,
"is_bot": false,
"headline": "feat: add a `malloc`-compatible interface to `GlobalTlsf`",
"author_name": "yvt",
"author_login": "yvt",
"committed_at": "2021-05-29T11:30:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8faf67123628697fbbd7eaa80d08866c64067926",
"body": null,
"is_bot": false,
"headline": "feat: add `Tlsf::size_of_allocation_unknown_align` (crate-private)",
"author_name": "yvt",
"author_login": "yvt",
"committed_at": "2021-05-29T10:29:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ad5238e7bd8b3d7b12890d2a8c14e772e386354e",
"body": null,
"is_bot": false,
"headline": "doc: non-method associated functions should refer to `Self`, not `self`",
"author_name": "yvt",
"author_login": "yvt",
"committed_at": "2021-05-29T10:29:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7da769d4182bdf169d530e0a54bafeda7b93a3c0",
"body": "…fe` operation",
"is_bot": false,
"headline": "doc: remove the \"safety\" comment which is not accompanied by an `unsa…",
"author_name": "yvt",
"author_login": "yvt",
"committed_at": "2021-05-29T10:29:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ad29bcde80e3d9855ee407f5c2d6e537a95e7e8c",
"body": null,
"is_bot": false,
"headline": "feat: add `Tlsf::deallocate_unknown_align` (crate-private)",
"author_name": "yvt",
"author_login": "yvt",
"committed_at": "2021-05-29T10:29:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1c2dba9b95f48da50bf5bc9f613f61a192891780",
"body": null,
"is_bot": false,
"headline": "refactor: move most of `deallocate`'s code to `deallocate_block`",
"author_name": "yvt",
"author_login": "yvt",
"committed_at": "2021-05-29T09:16:26Z",
"body_truncated": false,
"is_coding_agent": false
}
],
"releases_count": 4,
"commits_last_year": 41,
"latest_release_at": "2026-07-27T00:56:22Z",
"latest_release_tag": "0.2.3",
"releases_from_tags": false,
"days_since_last_push": 1,
"active_weeks_last_year": 6,
"days_since_latest_release": 1,
"mean_days_between_releases": 475.1
},
"community": {
"has_readme": true,
"has_license": true,
"has_description": true,
"has_contributing": false,
"health_percentage": 42,
"has_issue_template": false,
"has_code_of_conduct": false,
"has_pull_request_template": false
},
"ecosystem": {
"packages": [
{
"name": "rlsf",
"exists": true,
"license": "MIT/Apache-2.0",
"keywords": [
"web-programming",
"wasm",
"no-std",
"embedded",
"memory-management"
],
"ecosystem": "crates",
"matches_repo": true,
"registry_url": "https://crates.io/crates/rlsf",
"is_deprecated": false,
"latest_version": "0.2.3",
"repository_url": "https://github.com/yvt/rlsf",
"versions_count": 7,
"total_downloads": 1704631,
"dependents_count": null,
"deprecation_note": null,
"maintainers_count": null,
"monthly_downloads": 171219,
"first_published_at": "2021-05-20T16:00:33.803949Z",
"latest_published_at": "2026-07-27T00:55:44.018052Z",
"latest_version_yanked": false,
"days_since_latest_publish": 1
}
]
},
"popularity": {
"forks": 12,
"stars": 124,
"watchers": 2,
"fork_history": {
"days": [
{
"date": "2022-04-28",
"count": 1
},
{
"date": "2022-12-07",
"count": 1
},
{
"date": "2023-01-27",
"count": 1
},
{
"date": "2025-01-02",
"count": 1
},
{
"date": "2025-01-15",
"count": 1
},
{
"date": "2025-02-10",
"count": 1
},
{
"date": "2025-06-02",
"count": 1
},
{
"date": "2025-10-30",
"count": 1
},
{
"date": "2025-11-12",
"count": 1
},
{
"date": "2025-12-14",
"count": 1
},
{
"date": "2026-01-28",
"count": 1
},
{
"date": "2026-07-25",
"count": 1
}
],
"complete": true,
"collected": 12,
"total_forks": 12
},
"star_history": null,
"open_issues_and_prs": 7
},
"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",
"crates/rlsf/Cargo.toml",
"crates/rlsf_benchmark_farcri/Cargo.toml",
"crates/rlsf_override/Cargo.toml"
],
"largest_source_bytes": 66390,
"source_files_sampled": 18,
"oversized_source_files": 1,
"agent_instruction_files": [],
"agent_instruction_max_bytes": null
},
"dependencies": {
"manifests": [
"Cargo.toml"
],
"advisories": {
"error": null,
"scope": "published_package",
"source": "osv",
"findings": [
{
"name": "atty",
"direct": false,
"version": "0.2.14",
"severity": "low",
"ecosystem": "crates",
"cvss_score": null,
"advisory_ids": [
"GHSA-g98v-hv3f-hcfr",
"RUSTSEC-2021-0145",
"RUSTSEC-2024-0375"
],
"fixed_version": null,
"advisory_count": 3,
"oldest_advisory_days": 1849
},
{
"name": "rand",
"direct": false,
"version": "0.7.3",
"severity": "low",
"ecosystem": "crates",
"cvss_score": null,
"advisory_ids": [
"GHSA-cq8v-f236-94qc",
"RUSTSEC-2026-0097"
],
"fixed_version": "0.10.1",
"advisory_count": 2,
"oldest_advisory_days": 109
}
],
"collected": true,
"malicious": [],
"truncated": false,
"by_severity": {
"low": 2
},
"advisory_count": 5,
"affected_count": 2,
"assessed_count": 37,
"malicious_count": 0,
"assessed_package": "crates:rlsf@0.2.3",
"unassessed_count": 0,
"direct_affected_count": 0
},
"ecosystems": [
"crates"
],
"dependencies": [
{
"name": "cfg-if",
"manifest": "crates/rlsf/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "1.0.0"
},
{
"name": "const_default1",
"manifest": "crates/rlsf/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "1"
},
{
"name": "rustversion",
"manifest": "crates/rlsf/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "1"
},
{
"name": "rlsf",
"manifest": "crates/rlsf_override/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "0.2.2"
},
{
"name": "libc",
"manifest": "crates/rlsf_override/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "0.2.50"
}
],
"all_dependencies": {
"error": null,
"source": "github-sbom",
"packages": [
{
"name": "cfg-if",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "cfg-if",
"direct": true,
"version": "0.1.10",
"ecosystem": "crates"
},
{
"name": "cfg-if",
"direct": true,
"version": "1.0.0",
"ecosystem": "crates"
},
{
"name": "libc",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "libc",
"direct": true,
"version": "0.2.160",
"ecosystem": "crates"
},
{
"name": "rlsf",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "rustversion",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "rustversion",
"direct": true,
"version": "1.0.22",
"ecosystem": "crates"
},
{
"name": "aho-corasick",
"direct": false,
"version": "0.7.18",
"ecosystem": "crates"
},
{
"name": "ansi_term",
"direct": false,
"version": "0.11.0",
"ecosystem": "crates"
},
{
"name": "arrayvec",
"direct": false,
"version": "0.7.0",
"ecosystem": "crates"
},
{
"name": "as-slice",
"direct": false,
"version": "0.1.5",
"ecosystem": "crates"
},
{
"name": "atty",
"direct": false,
"version": "0.2.14",
"ecosystem": "crates"
},
{
"name": "bindgen",
"direct": false,
"version": "0.56.0",
"ecosystem": "crates"
},
{
"name": "bitflags",
"direct": false,
"version": "1.2.1",
"ecosystem": "crates"
},
{
"name": "buddy-alloc",
"direct": false,
"version": null,
"ecosystem": "crates"
},
{
"name": "buddy-alloc",
"direct": false,
"version": "0.4.1",
"ecosystem": "crates"
},
{
"name": "byteorder",
"direct": false,
"version": "1.4.3",
"ecosystem": "crates"
},
{
"name": "bzip2",
"direct": false,
"version": null,
"ecosystem": "crates"
},
{
"name": "bzip2",
"direct": false,
"version": "0.4.2",
"ecosystem": "crates"
},
{
"name": "bzip2-sys",
"direct": false,
"version": "0.1.10+1.0.8",
"ecosystem": "crates"
},
{
"name": "cc",
"direct": false,
"version": "1.0.68",
"ecosystem": "crates"
},
{
"name": "cexpr",
"direct": false,
"version": "0.4.0",
"ecosystem": "crates"
},
{
"name": "clang-sys",
"direct": false,
"version": "1.2.0",
"ecosystem": "crates"
},
{
"name": "clap",
"direct": false,
"version": "2.33.3",
"ecosystem": "crates"
},
{
"name": "const-default",
"direct": false,
"version": null,
"ecosystem": "crates"
},
{
"name": "const-default",
"direct": false,
"version": "1.0.0",
"ecosystem": "crates"
},
{
"name": "cryo",
"direct": false,
"version": "0.2.2",
"ecosystem": "crates"
},
{
"name": "dlmalloc",
"direct": false,
"version": null,
"ecosystem": "crates"
},
{
"name": "dlmalloc",
"direct": false,
"version": "0.2.1",
"ecosystem": "crates"
},
{
"name": "env_logger",
"direct": false,
"version": null,
"ecosystem": "crates"
},
{
"name": "env_logger",
"direct": false,
"version": "0.7.1",
"ecosystem": "crates"
},
{
"name": "env_logger",
"direct": false,
"version": "0.8.3",
"ecosystem": "crates"
},
{
"name": "farcri",
"direct": false,
"version": "0.1.0",
"ecosystem": "crates"
},
{
"name": "generic-array",
"direct": false,
"version": "0.12.4",
"ecosystem": "crates"
},
{
"name": "generic-array",
"direct": false,
"version": "0.13.3",
"ecosystem": "crates"
},
{
"name": "generic-array",
"direct": false,
"version": "0.14.4",
"ecosystem": "crates"
},
{
"name": "getrandom",
"direct": false,
"version": "0.1.16",
"ecosystem": "crates"
},
{
"name": "glob",
"direct": false,
"version": "0.3.0",
"ecosystem": "crates"
},
{
"name": "half",
"direct": false,
"version": "1.7.1",
"ecosystem": "crates"
},
{
"name": "hash32",
"direct": false,
"version": "0.1.1",
"ecosystem": "crates"
},
{
"name": "heapless",
"direct": false,
"version": "0.6.1",
"ecosystem": "crates"
},
{
"name": "hermit-abi",
"direct": false,
"version": "0.1.18",
"ecosystem": "crates"
},
{
"name": "humantime",
"direct": false,
"version": "1.3.0",
"ecosystem": "crates"
},
{
"name": "humantime",
"direct": false,
"version": "2.1.0",
"ecosystem": "crates"
},
{
"name": "lazy_static",
"direct": false,
"version": "1.4.0",
"ecosystem": "crates"
},
{
"name": "lazycell",
"direct": false,
"version": "1.3.0",
"ecosystem": "crates"
},
{
"name": "libloading",
"direct": false,
"version": "0.7.0",
"ecosystem": "crates"
},
{
"name": "linked_list_allocator",
"direct": false,
"version": null,
"ecosystem": "crates"
},
{
"name": "linked_list_allocator",
"direct": false,
"version": "0.8.11",
"ecosystem": "crates"
},
{
"name": "lock_api",
"direct": false,
"version": "0.3.4",
"ecosystem": "crates"
},
{
"name": "log",
"direct": false,
"version": null,
"ecosystem": "crates"
},
{
"name": "log",
"direct": false,
"version": "0.4.14",
"ecosystem": "crates"
},
{
"name": "memchr",
"direct": false,
"version": "2.7.4",
"ecosystem": "crates"
},
{
"name": "memory_units",
"direct": false,
"version": "0.4.0",
"ecosystem": "crates"
},
{
"name": "nom",
"direct": false,
"version": "5.1.2",
"ecosystem": "crates"
},
{
"name": "peeking_take_while",
"direct": false,
"version": "0.1.2",
"ecosystem": "crates"
},
{
"name": "pin-utils",
"direct": false,
"version": "0.1.0",
"ecosystem": "crates"
},
{
"name": "pkg-config",
"direct": false,
"version": "0.3.19",
"ecosystem": "crates"
},
{
"name": "ppv-lite86",
"direct": false,
"version": "0.2.10",
"ecosystem": "crates"
},
{
"name": "proc-macro2",
"direct": false,
"version": "1.0.27",
"ecosystem": "crates"
},
{
"name": "quick-error",
"direct": false,
"version": "1.2.3",
"ecosystem": "crates"
},
{
"name": "quickcheck",
"direct": false,
"version": null,
"ecosystem": "crates"
},
{
"name": "quickcheck",
"direct": false,
"version": "0.9.2",
"ecosystem": "crates"
},
{
"name": "quickcheck_macros",
"direct": false,
"version": null,
"ecosystem": "crates"
},
{
"name": "quickcheck_macros",
"direct": false,
"version": "0.9.1",
"ecosystem": "crates"
},
{
"name": "quote",
"direct": false,
"version": "1.0.9",
"ecosystem": "crates"
},
{
"name": "rand",
"direct": false,
"version": "0.7.3",
"ecosystem": "crates"
},
{
"name": "rand_chacha",
"direct": false,
"version": "0.2.2",
"ecosystem": "crates"
},
{
"name": "rand_core",
"direct": false,
"version": "0.5.1",
"ecosystem": "crates"
},
{
"name": "rand_hc",
"direct": false,
"version": "0.2.0",
"ecosystem": "crates"
},
{
"name": "regex",
"direct": false,
"version": "1.5.4",
"ecosystem": "crates"
},
{
"name": "regex-syntax",
"direct": false,
"version": "0.6.25",
"ecosystem": "crates"
},
{
"name": "rustc-hash",
"direct": false,
"version": "1.1.0",
"ecosystem": "crates"
},
{
"name": "ryu",
"direct": false,
"version": "1.0.5",
"ecosystem": "crates"
},
{
"name": "scopeguard",
"direct": false,
"version": "1.1.0",
"ecosystem": "crates"
},
{
"name": "serde",
"direct": false,
"version": "1.0.126",
"ecosystem": "crates"
},
{
"name": "serde-json-core",
"direct": false,
"version": "0.2.0",
"ecosystem": "crates"
},
{
"name": "serde_cbor",
"direct": false,
"version": "0.11.1",
"ecosystem": "crates"
},
{
"name": "serde_derive",
"direct": false,
"version": "1.0.126",
"ecosystem": "crates"
},
{
"name": "shlex",
"direct": false,
"version": "0.1.1",
"ecosystem": "crates"
},
{
"name": "spin",
"direct": false,
"version": "0.5.2",
"ecosystem": "crates"
},
{
"name": "spinning_top",
"direct": false,
"version": "0.1.1",
"ecosystem": "crates"
},
{
"name": "stable_deref_trait",
"direct": false,
"version": "1.2.0",
"ecosystem": "crates"
},
{
"name": "strsim",
"direct": false,
"version": "0.8.0",
"ecosystem": "crates"
},
{
"name": "syn",
"direct": false,
"version": "1.0.72",
"ecosystem": "crates"
},
{
"name": "termcolor",
"direct": false,
"version": "1.1.2",
"ecosystem": "crates"
},
{
"name": "textwrap",
"direct": false,
"version": "0.11.0",
"ecosystem": "crates"
},
{
"name": "tokenlock",
"direct": false,
"version": "0.3.4",
"ecosystem": "crates"
},
{
"name": "typenum",
"direct": false,
"version": "1.13.0",
"ecosystem": "crates"
},
{
"name": "umm-malloc-sys",
"direct": false,
"version": null,
"ecosystem": "crates"
},
{
"name": "umm-malloc-sys",
"direct": false,
"version": "0.1.1",
"ecosystem": "crates"
},
{
"name": "unicode-width",
"direct": false,
"version": "0.1.12",
"ecosystem": "crates"
},
{
"name": "unicode-xid",
"direct": false,
"version": "0.2.2",
"ecosystem": "crates"
},
{
"name": "vec_map",
"direct": false,
"version": "0.8.2",
"ecosystem": "crates"
},
{
"name": "version_check",
"direct": false,
"version": "0.9.3",
"ecosystem": "crates"
},
{
"name": "wasi",
"direct": false,
"version": "0.9.0+wasi-snapshot-preview1",
"ecosystem": "crates"
},
{
"name": "wee_alloc",
"direct": false,
"version": null,
"ecosystem": "crates"
},
{
"name": "wee_alloc",
"direct": false,
"version": "0.4.5",
"ecosystem": "crates"
},
{
"name": "which",
"direct": false,
"version": "3.1.1",
"ecosystem": "crates"
},
{
"name": "winapi",
"direct": false,
"version": "0.3.9",
"ecosystem": "crates"
},
{
"name": "winapi-i686-pc-windows-gnu",
"direct": false,
"version": "0.4.0",
"ecosystem": "crates"
},
{
"name": "winapi-util",
"direct": false,
"version": "0.1.5",
"ecosystem": "crates"
},
{
"name": "winapi-x86_64-pc-windows-gnu",
"direct": false,
"version": "0.4.0",
"ecosystem": "crates"
}
],
"collected": true,
"truncated": false,
"total_count": 104,
"direct_count": 8,
"indirect_count": 96
}
},
"maintainership": {
"issues": {
"open_prs": 0,
"merged_prs": 7,
"open_issues": 7,
"closed_ratio": 0.462,
"closed_issues": 6,
"closed_unmerged_prs": 3
},
"bus_factor": 1,
"bot_contributors": 0,
"top_contributors": [
{
"type": "User",
"login": "yvt",
"commits": 188,
"avatar_url": "https://avatars.githubusercontent.com/u/5253988?v=4"
},
{
"type": "User",
"login": "AudaciousAxiom",
"commits": 2,
"avatar_url": "https://avatars.githubusercontent.com/u/179637270?v=4"
},
{
"type": "User",
"login": "austinabell",
"commits": 1,
"avatar_url": "https://avatars.githubusercontent.com/u/24993711?v=4"
},
{
"type": "User",
"login": "ia0",
"commits": 1,
"avatar_url": "https://avatars.githubusercontent.com/u/969295?v=4"
},
{
"type": "User",
"login": "stevefan1999-personal",
"commits": 1,
"avatar_url": "https://avatars.githubusercontent.com/u/29133953?v=4"
}
],
"contributors_sampled": 5,
"top_contributor_share": 0.974
},
"quality_signals": {
"has_ci": true,
"has_tests": true,
"ci_workflows": [
"ci.yml"
],
"has_docs_dir": false,
"linter_configs": [],
"has_editorconfig": false,
"has_linter_config": false,
"has_precommit_config": false
},
"security_signals": {
"lockfiles": [
"Cargo.lock"
],
"scorecard": {
"checks": [
{
"name": "Binary-Artifacts",
"score": 10,
"reason": "no binaries found in the repo",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#binary-artifacts"
},
{
"name": "Branch-Protection",
"score": 1,
"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": "4 out of 4 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": 0,
"reason": "Found 1/12 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 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": 0,
"reason": "no 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": 2,
"reason": "3 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 2",
"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": 0,
"reason": "11 existing vulnerabilities detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#vulnerabilities"
}
],
"commit": "fb850f038f2bdf927ea1f3c75a6d23fbd3f62b64",
"ran_at": "2026-07-28T01:58:58Z",
"aggregate_score": 2.9,
"scorecard_version": "v5.5.0"
},
"has_codeql_workflow": false,
"has_security_policy": false,
"has_dependabot_config": false
},
"contribution_flow": {
"collected": true,
"ci_last_run_at": "2026-07-26T17:16:36Z",
"oldest_open_prs": [],
"last_merged_pr_at": "2026-07-26T17:07:24Z",
"ci_last_conclusion": "SUCCESS",
"oldest_open_issues": [
{
"number": 1,
"created_at": "2021-09-02T04:51:40Z",
"last_comment_at": "2021-10-13T19:43:42Z",
"last_comment_author": "timblakely"
},
{
"number": 2,
"created_at": "2022-07-09T08:51:40Z",
"last_comment_at": "2022-08-31T14:40:57Z",
"last_comment_author": "yvt"
},
{
"number": 4,
"created_at": "2022-12-07T08:49:44Z",
"last_comment_at": "2025-08-18T13:20:27Z",
"last_comment_author": "bugadani"
},
{
"number": 7,
"created_at": "2023-02-17T01:00:29Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 8,
"created_at": "2024-03-18T13:31:45Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 14,
"created_at": "2025-07-03T07:02:09Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 20,
"created_at": "2025-12-08T03:18:39Z",
"last_comment_at": "2025-12-08T03:49:12Z",
"last_comment_author": "yvt"
}
]
}
},
"config": {
"disabled_metrics": [],
"disabled_categories": [],
"disabled_components": {}
},
"source": {
"url": "https://github.com/yvt/rlsf",
"host": "github.com",
"name": "rlsf",
"owner": "yvt"
},
"metrics": {
"overall": {
"key": "overall",
"band": "moderate",
"name": "Overall health",
"note": "The weighted overall 58 is calibrated to 62 on the published index scale (record calibration 2026-08-02).",
"notes": [
{
"code": "overall_calibration",
"params": {
"raw": 58,
"calibrated": 62,
"calibration": "2026-08-02"
}
}
],
"value": 62,
"inputs": {
"security": 43,
"vitality": 65,
"community": 56,
"governance": 56,
"calibration": "2026-08-02",
"engineering": 65,
"ai_readiness": 58,
"weighted_overall_raw": 58
},
"components": []
},
"categories": [
{
"key": "vitality",
"band": "good",
"name": "Vitality",
"value": 65,
"weight": 0.21,
"metrics": [
{
"key": "development_activity",
"band": "moderate",
"name": "Development activity",
"note": null,
"notes": [],
"value": 57,
"inputs": {
"commits_last_year": 41,
"human_commit_share": 1,
"days_since_last_push": 1,
"active_weeks_last_year": 6
},
"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": "6/52 weeks with commits",
"points": 4.2,
"status": "partial",
"details": [
{
"code": "commit_cadence_weeks",
"params": {
"weeks": 6
}
}
],
"max_points": 36
},
{
"key": "commit_volume",
"name": "Commit volume",
"detail": "41 commits in the last year",
"points": 14.6,
"status": "partial",
"details": [
{
"code": "commits_last_year",
"params": {
"count": 41
}
}
],
"max_points": 18
},
{
"key": "openssf_scorecard_maintained",
"name": "OpenSSF Scorecard: Maintained",
"detail": "3 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 2",
"points": 2,
"status": "partial",
"details": [],
"max_points": 10
}
]
},
{
"key": "release_discipline",
"band": "good",
"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": 76,
"inputs": {
"releases_count": 4,
"latest_release_tag": "0.2.3",
"releases_from_tags": false,
"days_since_latest_release": 1,
"mean_days_between_releases": 475.1
},
"components": [
{
"key": "ships_releases",
"name": "Ships releases",
"detail": "4 releases published",
"points": 27,
"status": "met",
"details": [
{
"code": "releases_published",
"params": {
"count": 4
}
}
],
"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 ~475.1 days",
"points": 5.4,
"status": "partial",
"details": [
{
"code": "release_cadence",
"params": {
"gap": 475.1
}
}
],
"max_points": 27
},
{
"key": "openssf_scorecard_signed_releases",
"name": "OpenSSF Scorecard: Signed-Releases",
"detail": "no releases found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 10
}
]
},
{
"key": "abandonment",
"band": "exceptional",
"name": "Abandonment",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"cap": null,
"state": "maintained",
"guards": [],
"signals": [],
"red_flag": false,
"multiplier_pct": 100,
"declared_reason": null,
"unverified_reason": null,
"unanswered_open_prs": null,
"unanswered_open_issues": null,
"days_since_last_merged_pr": null,
"days_since_last_human_commit": 9,
"days_since_last_human_commit_is_floor": false
},
"components": [
{
"key": "project_is_still_maintained",
"name": "Project is still maintained",
"detail": "last human commit 9 days ago",
"points": 100,
"status": "met",
"details": [
{
"code": "abandonment_maintained",
"params": {
"days": 9
}
}
],
"max_points": 100
}
]
}
],
"description": "Is the project alive — is code being written and are releases shipping?"
},
{
"key": "community",
"band": "moderate",
"name": "Community & Adoption",
"value": 56,
"weight": 0.17,
"metrics": [
{
"key": "popularity",
"band": "weak",
"name": "Popularity & adoption",
"note": null,
"notes": [],
"value": 43,
"inputs": {
"forks": 12,
"stars": 124,
"watchers": 2,
"growth_state": "unverified",
"growth_factor_pct": 100,
"growth_unverified_reason": "no_history"
},
"components": [
{
"key": "stars",
"name": "Stars",
"detail": "124 stars",
"points": 33.9,
"status": "partial",
"details": [
{
"code": "stars",
"params": {
"count": 124
}
}
],
"max_points": 60
},
{
"key": "forks",
"name": "Forks",
"detail": "12 forks",
"points": 8.7,
"status": "partial",
"details": [
{
"code": "forks",
"params": {
"count": 12
}
}
],
"max_points": 25
},
{
"key": "watchers",
"name": "Watchers",
"detail": "2 watchers",
"points": 0,
"status": "missed",
"details": [
{
"code": "watchers",
"params": {
"count": 2
}
}
],
"max_points": 15
}
]
},
{
"key": "community_health",
"band": "moderate",
"name": "Community health",
"note": null,
"notes": [],
"value": 50,
"inputs": {
"has_readme": true,
"has_license": true,
"readme_badges": null,
"has_contributing": false,
"has_issue_template": false,
"has_code_of_conduct": false,
"readme_badge_services": [],
"has_pull_request_template": 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": "excellent",
"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": 87,
"inputs": {
"packages": [
"rlsf"
],
"dependents": null,
"ecosystems": "crates",
"total_downloads": 1704631,
"monthly_downloads": 171219
},
"components": [
{
"key": "monthly_downloads",
"name": "Monthly downloads",
"detail": "171,219 downloads/month across crates",
"points": 69.8,
"status": "partial",
"details": [
{
"code": "downloads_monthly",
"params": {
"count": 171219,
"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": 56,
"weight": 0.23,
"metrics": [
{
"key": "maintainer_resilience",
"band": "at_risk",
"name": "Maintainer resilience (bus factor)",
"note": null,
"notes": [],
"value": 26,
"inputs": {
"bus_factor": 1,
"contributors_sampled": 5,
"top_contributor_share": 0.974
},
"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 97% of commits",
"points": 0.6,
"status": "partial",
"details": [
{
"code": "top_contributor_share",
"params": {
"share": 97
}
}
],
"max_points": 22.5
},
{
"key": "contributor_breadth",
"name": "Contributor breadth",
"detail": "5 contributors",
"points": 6.8,
"status": "partial",
"details": [
{
"code": "contributors_sampled",
"params": {
"count": 5
}
}
],
"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": "weak",
"name": "Issue & PR responsiveness",
"note": "Excluded from scoring (no data or not applicable): Newcomer PR acceptance. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"newcomer_pr_acceptance"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 46,
"inputs": {
"merged_prs": 7,
"open_issues": 7,
"closed_issues": 6,
"prs_merged_7d": null,
"prs_decided_7d": null,
"prs_merged_30d": null,
"prs_decided_30d": null,
"issue_closed_ratio": 0.462,
"closed_unmerged_prs": 3,
"first_time_authors_30d": null,
"first_time_prs_merged_30d": null,
"first_time_prs_decided_30d": null
},
"components": [
{
"key": "issue_resolution",
"name": "Issue resolution",
"detail": "46% of issues closed",
"points": 19.4,
"status": "partial",
"details": [
{
"code": "issues_closed_share",
"params": {
"share": 46
}
}
],
"max_points": 42
},
{
"key": "pr_acceptance",
"name": "PR acceptance",
"detail": "7/10 decided PRs merged",
"points": 21,
"status": "partial",
"details": [
{
"code": "decided_prs_merged",
"params": {
"merged": 7,
"decided": 10
}
}
],
"max_points": 30
},
{
"key": "newcomer_pr_acceptance",
"name": "Newcomer PR acceptance",
"detail": "no first-time contributor's PR decided in 30d",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_newcomer_prs",
"params": {
"days": 30
}
}
],
"max_points": 13
},
{
"key": "openssf_scorecard_code_review",
"name": "OpenSSF Scorecard: Code-Review",
"detail": "Found 1/12 approved changesets -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 15
}
]
},
{
"key": "stewardship",
"band": "good",
"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": 279,
"owner_type": "User",
"is_verified": null,
"owner_login": "yvt",
"public_repos": 114,
"account_age_days": 4726
},
"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": "279 followers of yvt",
"points": 17.6,
"status": "partial",
"details": [
{
"code": "owner_followers",
"params": {
"count": 279,
"login": "yvt"
}
}
],
"max_points": 25
},
{
"key": "track_record",
"name": "Track record",
"detail": "114 public repos, account ~12 yr old",
"points": 25,
"status": "met",
"details": [
{
"code": "public_repos",
"params": {
"count": 114
}
},
{
"code": "account_age_years",
"params": {
"years": 12
}
}
],
"max_points": 25
}
]
},
{
"key": "package_maintenance",
"band": "exceptional",
"name": "Package maintenance",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"packages": [
"rlsf"
],
"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": "7 published versions",
"points": 20,
"status": "met",
"details": [
{
"code": "published_versions",
"params": {
"count": 7
}
}
],
"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": "good",
"name": "Engineering Quality",
"value": 65,
"weight": 0.19,
"metrics": [
{
"key": "engineering_practices",
"band": "good",
"name": "Engineering practices",
"note": null,
"notes": [],
"value": 68,
"inputs": {
"has_ci": true,
"has_tests": true,
"has_editorconfig": false,
"has_linter_config": false,
"has_precommit_config": false
},
"components": [
{
"key": "ci_workflows",
"name": "CI workflows",
"detail": "1 workflow(s)",
"points": 24,
"status": "met",
"details": [
{
"code": "ci_workflows",
"params": {
"count": 1
}
}
],
"max_points": 24
},
{
"key": "tests_present",
"name": "Tests present",
"detail": null,
"points": 24,
"status": "met",
"details": [],
"max_points": 24
},
{
"key": "linter_config",
"name": "Linter config",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 16
},
{
"key": "pre_commit_hooks",
"name": "Pre-commit hooks",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 9.6
},
{
"key": "editorconfig",
"name": ".editorconfig",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 6.4
},
{
"key": "openssf_scorecard_ci_tests",
"name": "OpenSSF Scorecard: CI-Tests",
"detail": "4 out of 4 merged PRs checked by a CI test -- score normalized to 10",
"points": 20,
"status": "met",
"details": [],
"max_points": 20
}
]
},
{
"key": "documentation",
"band": "moderate",
"name": "Documentation",
"note": null,
"notes": [],
"value": 60,
"inputs": {
"topics": [
"memory-allocator",
"real-time-systems",
"embedded-systems",
"rust",
"bare-metal",
"library"
],
"has_wiki": true,
"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": "6 topics",
"points": 10,
"status": "met",
"details": [
{
"code": "topics_count",
"params": {
"count": 6
}
}
],
"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": "weak",
"name": "Security",
"value": 43,
"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": 30,
"inputs": {
"source": "openssf_scorecard",
"checks_evaluated": 16,
"scorecard_version": "v5.5.0",
"checks_inconclusive": 2,
"scorecard_aggregate": 2.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": 0.8,
"status": "partial",
"details": [],
"max_points": 7.5
},
{
"key": "ci_tests",
"name": "CI-Tests",
"detail": "4 out of 4 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 1/12 approved changesets -- score normalized to 0",
"points": 0,
"status": "missed",
"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": "no update tool detected",
"points": 0,
"status": "missed",
"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": "3 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 2",
"points": 1.5,
"status": "partial",
"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": "11 existing vulnerabilities detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
}
]
},
{
"key": "dependency_advisories",
"band": "exceptional",
"name": "Dependency advisories",
"note": "Matched the crates:rlsf@0.2.3 runtime dependency closure — what installing the published package pulls in — 37 packages. Reachability is not analyzed.",
"notes": [
{
"code": "advisories_scope_published",
"params": {
"package": "crates:rlsf@0.2.3",
"assessed": 37
}
},
{
"code": "advisories_reachability",
"params": {}
}
],
"value": 96,
"inputs": {
"source": "osv",
"advisories": 5,
"affected_packages": 2,
"assessed_packages": 37,
"unassessed_packages": 0,
"affected_by_severity": "low 2",
"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": "2 affected: atty 0.2.14 (low), rand 0.7.3 (low)",
"points": 22.4,
"status": "partial",
"details": [
{
"code": "advisories_affected",
"params": {
"count": 2,
"packages": "atty 0.2.14 (low), rand 0.7.3 (low)"
}
}
],
"max_points": 25
},
{
"key": "no_advisories_left_outstanding",
"name": "No advisories left outstanding",
"detail": "2 advisory-carrying package(s) unaddressed past 90 days; oldest published 1849 days ago",
"points": 38.1,
"status": "partial",
"details": [
{
"code": "advisories_stale",
"params": {
"days": 90,
"count": 2,
"oldest": 1849
}
}
],
"max_points": 40
}
]
},
{
"key": "malicious_dependencies",
"band": "exceptional",
"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": 37,
"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": "exceptional",
"name": "High-Risk Jurisdiction Exposure",
"note": "Only high-confidence self-published location evidence affects this multiplier. Ambiguous matches are review-only; country evidence is not proof of nationality, citizenship, legal registration, malicious intent, or sanctions status.",
"notes": [
{
"code": "jurisdiction_evidence_limits",
"params": {}
}
],
"value": 100,
"inputs": {
"meaning": "self-published location evidence; not nationality or citizenship",
"red_flag": false,
"exposures": [],
"policy_countries": [
"Russia",
"Iran",
"North Korea"
],
"commit_weight_rule": {
"min_commits": 50,
"min_commit_share": 0.1
},
"review_only_matches": 0,
"below_threshold_exposures": [],
"assessed_self_published_locations": 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": "moderate",
"name": "AI Readiness",
"value": 58,
"weight": 0.04,
"metrics": [
{
"key": "ai_agent_context",
"band": "weak",
"name": "Agent context & guidance",
"note": null,
"notes": [],
"value": 40,
"inputs": {
"has_llms_txt": false,
"legible_history_share": 0.99,
"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": "99 of 100 human commits state their intent (structured subject or explanatory body)",
"points": 40,
"status": "met",
"details": [
{
"code": "legible_history",
"params": {
"legible": 99,
"sampled": 100
}
}
],
"max_points": 40
}
]
},
{
"key": "ai_verify_loop",
"band": "moderate",
"name": "Verify loop (build / test / typecheck)",
"note": null,
"notes": [],
"value": 56,
"inputs": {
"has_nix": false,
"has_tests": true,
"lockfiles": [
"Cargo.lock"
],
"has_dockerfile": false,
"typed_language": true,
"bootstrap_files": [],
"has_devcontainer": false,
"has_linter_config": false,
"typecheck_configs": [],
"agent_commit_share": 0,
"toolchain_manifests": [
"Cargo.toml",
"crates/rlsf/Cargo.toml",
"crates/rlsf_benchmark_farcri/Cargo.toml",
"crates/rlsf_override/Cargo.toml"
],
"dependency_bot_commit_share": 0
},
"components": [
{
"key": "one_command_bootstrap",
"name": "One-command bootstrap",
"detail": "Cargo.toml, crates/rlsf/Cargo.toml, crates/rlsf_benchmark_farcri/Cargo.toml (toolchain convention, no task runner)",
"points": 12.6,
"status": "partial",
"details": [
{
"code": "toolchain_convention",
"params": {
"files": "Cargo.toml, crates/rlsf/Cargo.toml, crates/rlsf_benchmark_farcri/Cargo.toml"
}
}
],
"max_points": 18
},
{
"key": "automated_tests",
"name": "Automated tests",
"detail": null,
"points": 22,
"status": "met",
"details": [],
"max_points": 22
},
{
"key": "lint_format_config",
"name": "Lint / format config",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 11
},
{
"key": "static_type_checking",
"name": "Static type checking",
"detail": "Rust (statically typed)",
"points": 11,
"status": "met",
"details": [
{
"code": "statically_typed_language",
"params": {
"language": "Rust"
}
}
],
"max_points": 11
},
{
"key": "reproducible_environment",
"name": "Reproducible environment",
"detail": "lockfile",
"points": 10,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "lockfile"
}
}
],
"max_points": 10
},
{
"key": "demonstrated_agent_practice",
"name": "Demonstrated agent practice",
"detail": "no agent-authored commits among the last 100",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_agent_authored_commits",
"params": {
"sampled": 100
}
}
],
"max_points": 10
},
{
"key": "automated_maintenance",
"name": "Automated maintenance",
"detail": "no automated dependency updates observed",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_dependency_automation",
"params": {}
}
],
"max_points": 8
},
{
"key": "openssf_scorecard_pinned_dependencies",
"name": "OpenSSF Scorecard: Pinned-Dependencies",
"detail": "dependency not pinned by hash detected -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
}
]
},
{
"key": "ai_code_legibility",
"band": "exceptional",
"name": "Code legibility for models",
"note": null,
"notes": [],
"value": 97,
"inputs": {
"primary_language": "Rust",
"largest_source_bytes": 66390,
"source_files_sampled": 18,
"oversized_source_files": 1
},
"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": "1/18 source files over 60KB",
"points": 51.9,
"status": "partial",
"details": [
{
"code": "oversized_source_files",
"params": {
"kb": 60,
"sampled": 18,
"oversized": 1
}
}
],
"max_points": 55
}
]
}
],
"description": "How well is the repo equipped to be developed and maintained with AI coding agents? Carries a deliberately small weight: agent tooling is a real maintenance signal, but its absence must never gate the top of the scale (calibration saturates at raw 91, so 100/100 remains reachable with AI Readiness at zero)."
}
],
"classification": {
"top": [
"library"
],
"labels": [
"library"
],
"scores": {
"library": 8
},
"primary": "library",
"evidence": [
{
"tier": "distribution",
"label": "library",
"source": "registry:crates",
"weight": 6
},
{
"tier": "tags",
"label": "library",
"source": "tag:library",
"weight": 2
}
],
"artifacts": [],
"confidence": "medium",
"host_extension": false,
"runs_as_process": false,
"consumed_by_code": true
},
"metrics_version": "2.5.0"
},
"warnings": [
"Star history unavailable: GitHub GraphQL error: Resource not accessible by personal access token",
"Could not fetch crates package 'rlsf_override' from its registry",
"Could not fetch crates package 'rlsf_benchmark_farcri' from its registry"
],
"report_type": "repository",
"generated_at": "2026-07-28T01:59:11.614456Z",
"schema_version": "0.27.0",
"badge_url": "https://raw.githubusercontent.com/inspect-software/badges/main/v1/y/yvt/rlsf.svg",
"full_name": "yvt/rlsf",
"license_state": "standard",
"license_spdx": "Apache-2.0"
}