Звіт у форматі JSON машиночитний
{
"data": {
"repo": {
"topics": [
"rust",
"gzip",
"zlib",
"deflate-algorithm"
],
"is_fork": false,
"size_kb": 479,
"has_wiki": true,
"homepage": "https://docs.rs/libflate",
"languages": {
"Rust": 253129
},
"pushed_at": "2026-07-25T12:43:25Z",
"created_at": "2016-10-05T18:31:06Z",
"owner_type": "User",
"updated_at": "2026-07-25T12:43:17Z",
"description": "A Rust implementation of DEFLATE algorithm and related formats (ZLIB, GZIP)",
"is_archived": false,
"is_disabled": false,
"license_spdx": "MIT",
"default_branch": "master",
"license_spdx_raw": "MIT",
"primary_language": "Rust",
"significant_languages": [
"Rust"
]
},
"owner": {
"blog": null,
"name": "Takeru Ohta",
"type": "User",
"login": "sile",
"company": null,
"location": "Tokyo, Japan",
"followers": 469,
"avatar_url": "https://avatars.githubusercontent.com/u/181413?v=4",
"created_at": "2010-01-13T13:18:41Z",
"is_verified": null,
"public_repos": 325,
"account_age_days": 6036
},
"license": {
"state": "standard",
"spdx_id": "MIT",
"raw_spdx": "MIT",
"file_present": true,
"scorecard_found": true,
"profile_has_license": true
},
"activity": {
"releases": [
{
"tag": "v2.3.1",
"kind": "patch",
"published_at": "2026-07-25T12:43:35Z"
},
{
"tag": "v2.2.2",
"kind": "patch",
"published_at": "2026-04-16T22:47:19Z"
},
{
"tag": "v2.3.0",
"kind": "minor",
"published_at": "2026-04-15T10:34:15Z"
},
{
"tag": "v2.2.1",
"kind": "patch",
"published_at": "2025-11-12T00:34:50Z"
},
{
"tag": "2.2.0",
"kind": "minor",
"published_at": "2025-10-24T22:24:55Z"
},
{
"tag": "2.1.0",
"kind": "minor",
"published_at": "2024-04-30T12:29:02Z"
},
{
"tag": "2.0.0",
"kind": "major",
"published_at": "2023-07-08T10:10:37Z"
},
{
"tag": "1.4.0",
"kind": "minor",
"published_at": "2023-05-21T02:08:02Z"
},
{
"tag": "1.3.0",
"kind": "minor",
"published_at": "2023-02-16T13:36:47Z"
},
{
"tag": "1.2.0",
"kind": "minor",
"published_at": "2022-03-25T02:53:21Z"
},
{
"tag": "1.1.2",
"kind": "patch",
"published_at": "2022-01-25T13:41:16Z"
}
],
"recent_commits": [
{
"oid": "c53ef6c117342451da1c376be1aec43d5f846de3",
"body": null,
"is_bot": false,
"headline": "chore: bump version to 2.3.1",
"author_name": "Takeru Ohta",
"author_login": "sile",
"committed_at": "2026-07-25T12:42:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "816ad8e6abf174712bcbe2b8ecf706cb189239d3",
"body": "fix: avoid stack overflow when decoding many DEFLATE blocks (#88)",
"is_bot": false,
"headline": "Merge pull request #89 from sile/fix-issue-88",
"author_name": "Takeru Ohta",
"author_login": "sile",
"committed_at": "2026-07-25T12:41:25Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7d2aaf91311738a8e1bffefe699c5c8c4b338b9e",
"body": "- Rename `decode_large_deflate_stream` to `test_issue_88` to match the\n repo's naming convention for regression tests (`test_issue_64`,\n `test_issues_3`).\n- Drop the redundant `pub` on the test-only helper.\n- Hoist the WASM payload constant to module scope so the test and the\n helper share a sing\n[…]\nsh the helper's docstring so it no longer implies the block\n decoder is still recursive.\n- Guard `blocks - 1` with a `debug_assert!` so misuse (`blocks == 0`)\n fails loudly instead of wrap-then-OOM.",
"is_bot": false,
"headline": "test: polish issue #88 reproduction helper",
"author_name": "Takeru Ohta",
"author_login": "sile",
"committed_at": "2026-07-25T10:51:52Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "9428cceb0780372928552936bc5ee9335df1ece6",
"body": "Both `deflate::Decoder::read` and `gzip::Decoder::read` were written as\nself-recursive tail calls that advance the stream one DEFLATE block (or\none gzip member) per invocation. Rust does not guarantee tail-call\nelimination, so a stream carrying enough consecutive empty stored\nblocks — or a multi-mem\n[…]\ne the same\nstack frame, matching the pattern in the rest of the crate.\n\nAlso gate the `make_large_deflate_stream` test helper on the `std`\nfeature so `cargo test --no-default-features` still compiles.",
"is_bot": false,
"headline": "fix: iterate instead of recursing in Decoder::read (issue #88)",
"author_name": "Takeru Ohta",
"author_login": "sile",
"committed_at": "2026-07-25T10:26:39Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "08b0004181978fc7f111703d3613881bcd188212",
"body": "`Read for Decoder` is defined with self-recursive calls in tail position.\nRust does not guarantee tail-call elimination, so a DEFLATE stream that\nchains many empty stored blocks makes the recursion deep enough to\noverflow the thread stack.\n\nThe new test builds such a stream (250_000 empty non-final stored\nblocks followed by a small final block) and decodes it via the gzip\ndecoder; on master the process aborts with `has overflowed its stack`.",
"is_bot": false,
"headline": "test: add failing test reproducing stack overflow reported in #88",
"author_name": "Takeru Ohta",
"author_login": "sile",
"committed_at": "2026-07-25T10:23:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "58bdec2101519da79f9872681a250837e46b5cad",
"body": "Pin each third-party action to a specific commit SHA (with the version\ntag preserved as a trailing comment) instead of a mutable tag. Bump\nactions to their latest releases along the way.",
"is_bot": false,
"headline": "ci: pin GitHub Actions to commit SHA hashes",
"author_name": "Takeru Ohta",
"author_login": "sile",
"committed_at": "2026-05-21T14:13:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "df2e2ced291dfd9a312f4010385822f106a7ec16",
"body": null,
"is_bot": false,
"headline": "refactor: move lz77 deflate integration tests to libflate crate",
"author_name": "Takeru Ohta",
"author_login": "sile",
"committed_at": "2026-04-15T10:31:45Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "76d16fe238e70d1be31654aee91ab51314572de5",
"body": null,
"is_bot": false,
"headline": "chore: bump libflate dev-dependency version to 2.3",
"author_name": "Takeru Ohta",
"author_login": "sile",
"committed_at": "2026-04-15T10:23:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "bf6457c18322eec5ddea56c685430693a903516d",
"body": null,
"is_bot": false,
"headline": "chore: remove authors field from Cargo.toml files",
"author_name": "Takeru Ohta",
"author_login": "sile",
"committed_at": "2026-04-15T10:21:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1eca956d394e3cd10104847f8eed288a95c51948",
"body": null,
"is_bot": false,
"headline": "chore: bump libflate_lz77 dependency to 2.3.0",
"author_name": "Takeru Ohta",
"author_login": "sile",
"committed_at": "2026-04-15T10:21:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4a024ae0680dc910abe4258a477d72a63c35b639",
"body": null,
"is_bot": false,
"headline": "chore: bump version to 2.3.0",
"author_name": "Takeru Ohta",
"author_login": "sile",
"committed_at": "2026-04-15T10:18:53Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f236e48204e6d3ab25655207d6f919efe0b1e752",
"body": "Replace yanked core2 dependency with no_std_io2",
"is_bot": false,
"headline": "Merge pull request #86 from abraemer/master",
"author_name": "Takeru Ohta",
"author_login": "sile",
"committed_at": "2026-04-15T10:15:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f7347a52cdad26bc534ab062c0bbe3831df8c14c",
"body": null,
"is_bot": false,
"headline": "Replace yanked core2 dependency with no_std_io2",
"author_name": "Adrian Braemer",
"author_login": "abraemer",
"committed_at": "2026-04-14T19:24:41Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d59a94d6f317aa3dd2b82a51bc811846f95fba02",
"body": "Fix `invalid_data_error!` macro to properly format error messages with arguments",
"is_bot": false,
"headline": "Merge pull request #84 from sile/fix-issue-82",
"author_name": "Takeru Ohta",
"author_login": "sile",
"committed_at": "2026-02-15T11:19:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ddbcb3cfce18724720e21aaaea33c5436f9be495",
"body": null,
"is_bot": false,
"headline": "fix: add feature gate for issue_82 test",
"author_name": "Takeru Ohta",
"author_login": "sile",
"committed_at": "2026-02-15T11:18:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f1c59c15d51c6637e7b407399aa7daf0f637adb5",
"body": null,
"is_bot": false,
"headline": "fix: add feature gate for format macro in invalid_data_error",
"author_name": "Takeru Ohta",
"author_login": "sile",
"committed_at": "2026-02-15T11:16:06Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "df5468f1c7a3d4ef3c9763e9f3cc91474aa378fd",
"body": "…ting",
"is_bot": false,
"headline": "fix: use alloc::format in invalid_data_error macro and improve format…",
"author_name": "Takeru Ohta",
"author_login": "sile",
"committed_at": "2026-02-15T11:14:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "17744022b109c7cc6d22a0a339569391abdca7a4",
"body": null,
"is_bot": false,
"headline": "fix: improve invalid_data_error macro to support format arguments",
"author_name": "Takeru Ohta",
"author_login": "sile",
"committed_at": "2026-02-15T11:12:38Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cad002d4ee72b26093d5dccde71d520a22d9517f",
"body": "Upgrade Rust edition to 2024",
"is_bot": false,
"headline": "Merge pull request #83 from sile/2024-edition",
"author_name": "Takeru Ohta",
"author_login": "sile",
"committed_at": "2026-02-15T11:08:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a1c98c0c1daed2c957ed179557ccf58dd44bcac9",
"body": null,
"is_bot": false,
"headline": "style: Sort imports alphabetically",
"author_name": "Takeru Ohta",
"author_login": "sile",
"committed_at": "2026-02-15T11:07:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3e7a62281ae9cf85cb9fda5efa7ce88cd774d49b",
"body": null,
"is_bot": false,
"headline": "chore: Upgrade Rust edition to 2024 and update actions/checkout to v6",
"author_name": "Takeru Ohta",
"author_login": "sile",
"committed_at": "2026-02-15T11:06:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0d956b9be579a6b5691c0128375611a4a75c87fd",
"body": null,
"is_bot": false,
"headline": "chore: Bump version to 2.2.1",
"author_name": "Takeru Ohta",
"author_login": "sile",
"committed_at": "2025-11-12T00:34:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0ad63afaf47e41c8f73c29ced5e793e00b8b7ff1",
"body": "Update CI workflows and add release automation",
"is_bot": false,
"headline": "Merge pull request #81 from sile/update-github-actions",
"author_name": "Takeru Ohta",
"author_login": "sile",
"committed_at": "2025-11-12T00:33:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b0eb13070860a0e5f16ba8d55b1d912460384712",
"body": null,
"is_bot": false,
"headline": "chore: Add dependency on github-release job to publish workflow",
"author_name": "Takeru Ohta",
"author_login": "sile",
"committed_at": "2025-11-12T00:31:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ff4285942bdb01eea477a8a87dd1e4803dfae8da",
"body": null,
"is_bot": false,
"headline": "chore: Fix indentation in release workflow",
"author_name": "Takeru Ohta",
"author_login": "sile",
"committed_at": "2025-11-12T00:31:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9595ae9755d072dbaa12c75181cfd23c595bc1c6",
"body": null,
"is_bot": false,
"headline": "chore: Add GitHub release and crates.io publish workflow",
"author_name": "Takeru Ohta",
"author_login": "sile",
"committed_at": "2025-11-12T00:22:44Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "833cb92f6bb96d0177238c211c42cc9b4ad2f5a1",
"body": "…cargo commands",
"is_bot": false,
"headline": "chore: Update CI workflow to use latest action versions and simplify …",
"author_name": "Takeru Ohta",
"author_login": "sile",
"committed_at": "2025-11-12T00:22:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0a99b7a766c8f453656fc47b0a971f0952cdcfd0",
"body": null,
"is_bot": false,
"headline": "style: Normalize Cargo.toml include array formatting",
"author_name": "Takeru Ohta",
"author_login": "sile",
"committed_at": "2025-11-12T00:12:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0c5af3706f9988c6940e80540d22f4b65cf85e1f",
"body": "Exclude test data from published packages",
"is_bot": false,
"headline": "Merge pull request #80 from GiGainfosystems/exclude_test_data",
"author_name": "Takeru Ohta",
"author_login": "sile",
"committed_at": "2025-11-12T00:10:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d06efbd31949026cde299d6d3a5bfd6fd47400f9",
"body": "During a review of our dependencies we noticed that the libflate crate\ncontains test data in the published versions. It would be great to\nexclude them to avoid situtations like that xz incident some time back.\nIt also slightly decreases the package size, although that's not\nsignificant.",
"is_bot": false,
"headline": "Exclude test data from published packages",
"author_name": "Georg Semmler",
"author_login": "weiznich",
"committed_at": "2025-11-11T11:42:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2ffe076d3c8b72748cfb71437d9843bd06cbf8fa",
"body": null,
"is_bot": false,
"headline": "chore: Bump libflate_lz77 to 2.2.0",
"author_name": "Takeru Ohta",
"author_login": "sile",
"committed_at": "2025-10-24T22:23:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b635c5cd2963cf8ad019debe7f9c6bad3bb59bd6",
"body": null,
"is_bot": false,
"headline": "chore: Bump version to 2.2.0",
"author_name": "Takeru Ohta",
"author_login": "sile",
"committed_at": "2025-10-24T22:21:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e28984139b98285c754d18a1dcf4bb6488da15fe",
"body": "Remove outdated CI tooling and coverage tracking",
"is_bot": false,
"headline": "Merge pull request #79 from sile/remove-coveralls",
"author_name": "Takeru Ohta",
"author_login": "sile",
"committed_at": "2025-10-24T22:19:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "046b736860dcabd97c731e9bcd01caacac28e5a4",
"body": null,
"is_bot": false,
"headline": "chore: Replace actions-rs/toolchain with rustup commands",
"author_name": "Takeru Ohta",
"author_login": "sile",
"committed_at": "2025-10-24T22:16:25Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ffeac4d368e45c59cbc34a952c7251e9a32ff11a",
"body": null,
"is_bot": false,
"headline": "chore: Remove coverage workflow and badges",
"author_name": "Takeru Ohta",
"author_login": "sile",
"committed_at": "2025-10-24T22:13:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "80474a212802abbe1379787ff2cbd59cf1b355a2",
"body": null,
"is_bot": false,
"headline": "refactor: Simplify bitwidth iteration with `rfind`",
"author_name": "Takeru Ohta",
"author_login": "sile",
"committed_at": "2025-10-24T22:11:09Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a25b5536d4fbb4581add996e41d7856b9ba717fe",
"body": null,
"is_bot": false,
"headline": "refactor: Use `iter::repeat_n` instead of `std::iter::repeat_n`",
"author_name": "Takeru Ohta",
"author_login": "sile",
"committed_at": "2025-10-24T22:07:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b5b00d4bb492b30e30c44f4eebe8b1a69ec6ef05",
"body": null,
"is_bot": false,
"headline": "Fix clippy warnings",
"author_name": "Takeru Ohta",
"author_login": "sile",
"committed_at": "2025-10-24T22:05:16Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "53a4503a915cd54b960503038012b325712c35d4",
"body": null,
"is_bot": false,
"headline": "Apply `cargo clppy --fix`",
"author_name": "Takeru Ohta",
"author_login": "sile",
"committed_at": "2025-10-24T22:03:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "630ad81f3df2a2f7de14943e06ef3f227ec580ab",
"body": "Update hashbrown to 0.16",
"is_bot": false,
"headline": "Merge pull request #78 from orlp/hashbrown-0-16",
"author_name": "Takeru Ohta",
"author_login": "sile",
"committed_at": "2025-10-24T21:59:41Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1c977e39b615a34fc06c9ad09930c98948ed1ffc",
"body": null,
"is_bot": false,
"headline": "Update hashbrown to 0.16",
"author_name": "Orson Peters",
"author_login": "orlp",
"committed_at": "2025-10-24T13:11:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6676d36d381eec60f376337e528d658b16c87c7a",
"body": null,
"is_bot": false,
"headline": "Bump version to 2.1.0",
"author_name": "Takeru Ohta",
"author_login": "sile",
"committed_at": "2024-04-30T12:27:09Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "04565c31d7c09804bbb002daf904eacf61122046",
"body": "Update clap to v4",
"is_bot": false,
"headline": "Merge pull request #77 from sile/update-clap",
"author_name": "Takeru Ohta",
"author_login": "sile",
"committed_at": "2024-04-30T12:22:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "192980eedb7053a07cfb7f0572b84e78266a20e8",
"body": null,
"is_bot": false,
"headline": "Update Cargo.toml",
"author_name": "Takeru Ohta",
"author_login": "sile",
"committed_at": "2024-04-30T12:21:53Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a424630c4587ac8c2343319e2c139a5a4d945479",
"body": null,
"is_bot": false,
"headline": "Update clap to v4",
"author_name": "Takeru Ohta",
"author_login": "sile",
"committed_at": "2024-04-30T12:16:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "27628cba4c7398de36c2bb4a20b5e9d59f3e6ce4",
"body": "Update hashbrown to 0.14",
"is_bot": false,
"headline": "Merge pull request #76 from torokati44/hashbrown-0.14",
"author_name": "Takeru Ohta",
"author_login": "sile",
"committed_at": "2024-04-30T12:04:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d37f049f3f151fe5c10fd1766456eb1a4f8daf0e",
"body": null,
"is_bot": false,
"headline": "Update hashbrown to 0.14",
"author_name": "TÖRÖK Attila",
"author_login": "torokati44",
"committed_at": "2024-04-30T10:39:10Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "40d82600875760b3b8161ac72aa41e1681786b51",
"body": null,
"is_bot": false,
"headline": "Fix broken tests",
"author_name": "Takeru Ohta",
"author_login": "sile",
"committed_at": "2023-07-08T10:36:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7aba1f654cf06a8ddf49deaec2f4ba047a0d07d4",
"body": null,
"is_bot": false,
"headline": "Update Cargo.toml",
"author_name": "Takeru Ohta",
"author_login": "sile",
"committed_at": "2023-07-08T10:03:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "015cf035e90a6963f9edd6c691ff73b8378d79e6",
"body": null,
"is_bot": false,
"headline": "Update Cargo.toml",
"author_name": "Takeru Ohta",
"author_login": "sile",
"committed_at": "2023-07-08T10:01:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cc398eadd311376529448355a7837b9fe6f1999d",
"body": null,
"is_bot": false,
"headline": "Update edition to 2021",
"author_name": "Takeru Ohta",
"author_login": "sile",
"committed_at": "2023-07-08T09:55:56Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8284efad9a36df4f5c0d74c1d6a2371eb37126e8",
"body": null,
"is_bot": false,
"headline": "Update README.md",
"author_name": "Takeru Ohta",
"author_login": "sile",
"committed_at": "2023-07-08T09:52:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cc5fb68f07f59a562defb8fa4d50ea7df840c278",
"body": "Turn the no_std feature into default-enabled std",
"is_bot": false,
"headline": "Merge pull request #74 from kupiakos/master",
"author_name": "Takeru Ohta",
"author_login": "sile",
"committed_at": "2023-07-08T09:49:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ee2989758f95b2dcc58c9b484d638ee32abdebd1",
"body": "This also:\n- fixes the `no_std` not being enabled due to a swapped `cfg_attr`.\n- tests this builds with a `#![no_std]` binary.\n- A lot of the cfg's have been removed due to being unneeded.\n- adds a new dependency\n- updates the version to 2.0\n- adds a ci command to to use cargo-no-std to check no-std\n[…]\nrom `core.\n\ncore2 is also meant to be used as a `no_std` polyfill with its\n`std` feature. That is, you can reference `core2::io`, and if the\n`std` feature is enabled, it actually references `std::io`.",
"is_bot": false,
"headline": "Turn the no_std feature into default-enabled std",
"author_name": "Alyssa Haroldsen",
"author_login": "kupiakos",
"committed_at": "2023-07-08T02:03:20Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "33566f7d3911fc4d444a7d02f7f626c5105b9182",
"body": "specify clap version in flate_bench",
"is_bot": false,
"headline": "Merge pull request #73 from olback/specify-clap-version",
"author_name": "Takeru Ohta",
"author_login": "sile",
"committed_at": "2023-05-24T00:24:42Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "46b3674b92bdac448f0a023319b0cf67899454cd",
"body": null,
"is_bot": false,
"headline": "specify clap version in flate_bench",
"author_name": "Edwin Svensson",
"author_login": "olback",
"committed_at": "2023-05-23T18:22:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ed89e1def48eab6c91f238f3e30bf91923c35e03",
"body": null,
"is_bot": false,
"headline": "Refactor test case",
"author_name": "Takeru Ohta",
"author_login": "sile",
"committed_at": "2023-05-21T02:20:53Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "aabcbbea292a1ddd4ea8c73bdddc08fd54a25f0f",
"body": null,
"is_bot": false,
"headline": "Bump version to 1.4.0",
"author_name": "Takeru Ohta",
"author_login": "sile",
"committed_at": "2023-05-21T02:07:16Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ebb8d0cf5451b55e5ed0fc61992e0336aec06a78",
"body": "Add `unread_decoded_data` methods to decoders",
"is_bot": false,
"headline": "Merge pull request #72 from sile/unread-decoded-data",
"author_name": "Takeru Ohta",
"author_login": "sile",
"committed_at": "2023-05-21T02:02:11Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "85acf717764cb0e5ab30043b0ea3cb13164baa78",
"body": null,
"is_bot": false,
"headline": "Add `unread_decoded_data` methods to decoders",
"author_name": "Takeru Ohta",
"author_login": "sile",
"committed_at": "2023-05-21T01:54:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7e23197c3b8e50732e780f2b57f6b7c64946f539",
"body": null,
"is_bot": false,
"headline": "Bump verion to 1.2.0",
"author_name": "Takeru Ohta",
"author_login": "sile",
"committed_at": "2023-02-16T13:34:38Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "49a2172dc51418ec2ad0d3abb95d010de4e7c3c9",
"body": null,
"is_bot": false,
"headline": "Bump version to 1.3.0",
"author_name": "Takeru Ohta",
"author_login": "sile",
"committed_at": "2023-02-16T13:34:09Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8ba4e6743642fc4f25e7bcf692de3ac39f3d7e85",
"body": "lib: add support for no_std builds",
"is_bot": false,
"headline": "Merge pull request #68 from rmsyn/no_std",
"author_name": "Takeru Ohta",
"author_login": "sile",
"committed_at": "2023-02-16T13:33:26Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b10f88a5d9f4888a669c6e6502a36282dcaa423c",
"body": "Introduce a new, default `std` feature to the library, and conditionally\nuse structures and traits from `no_std` compatible libraries.\n\nExisting `std` users can continue using the library with no changes.\n`no_std` users can import the library using `default_features = false`.",
"is_bot": false,
"headline": "lib: add support for no_std builds",
"author_name": "rmsyn",
"author_login": "rmsyn",
"committed_at": "2023-02-14T02:17:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0c11c3e86126af259d900d3e1734cf26085a828d",
"body": "Fix clippy (v0.1.67) warnings",
"is_bot": false,
"headline": "Merge pull request #69 from sile/fix-clippy-warnings-0.1.67",
"author_name": "Takeru Ohta",
"author_login": "sile",
"committed_at": "2023-02-06T09:21:42Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "aba829043f8a2d527b6c4984034fbe5e7adb0da6",
"body": null,
"is_bot": false,
"headline": "Fix clippy(nightly) warnings",
"author_name": "Takeru Ohta",
"author_login": "sile",
"committed_at": "2023-02-06T09:14:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1f83e87e6c7f8d17bfe45fb8be38320d9a018063",
"body": null,
"is_bot": false,
"headline": "Fix clippy(v0.1.67) warnings",
"author_name": "Takeru Ohta",
"author_login": "sile",
"committed_at": "2023-02-06T09:11:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "adc81463053123c853562b754f297cb96d3bb734",
"body": null,
"is_bot": false,
"headline": "Bump version to v1.2.0",
"author_name": "Takeru Ohta",
"author_login": "sile",
"committed_at": "2022-03-25T02:52:31Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d6ec2d2f68eed850f010c6dd0776b6831feffd82",
"body": "Remove single use of `unsafe`.",
"is_bot": false,
"headline": "Merge pull request #67 from mleonhard/master",
"author_name": "Takeru Ohta",
"author_login": "sile",
"committed_at": "2022-03-25T02:46:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b91f6a602fb52efeee06e8fa503bc9f161d226fa",
"body": null,
"is_bot": false,
"headline": "Remove single use of `unsafe`.",
"author_name": "Michael Leonhard",
"author_login": "mleonhard",
"committed_at": "2022-03-23T23:45:14Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "32d994779ed9efcd01c146146200283320813b60",
"body": null,
"is_bot": false,
"headline": "Bump version to v1.1.2",
"author_name": "Takeru Ohta",
"author_login": "sile",
"committed_at": "2022-01-25T13:40:03Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b99812983a2add8776ac648e0b39872a26069ed0",
"body": "Fix a bug that could crash program if input data contains invalid dynamic Huffman codes",
"is_bot": false,
"headline": "Merge pull request #65 from sile/fix-issue64",
"author_name": "Takeru Ohta",
"author_login": "sile",
"committed_at": "2022-01-25T13:37:50Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1f5cd6fd447e9f1d0b4d32181a2b9fa1495b296d",
"body": null,
"is_bot": false,
"headline": "Update ci.yml",
"author_name": "Takeru Ohta",
"author_login": "sile",
"committed_at": "2022-01-25T13:19:42Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2a5c8d9335fd9d29fc1164f0e9297665f9d57f60",
"body": null,
"is_bot": false,
"headline": "Set `safely_peek_bitwidth` to 1 if there is no EOS symbol",
"author_name": "Takeru Ohta",
"author_login": "sile",
"committed_at": "2022-01-25T12:44:26Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "978492a89b363fa5f1d0b429390486c41ab8e25c",
"body": null,
"is_bot": false,
"headline": "Add failing test",
"author_name": "Takeru Ohta",
"author_login": "sile",
"committed_at": "2022-01-25T12:44:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7e0e56f60e60c1fc4db795e0ec9ac16882205595",
"body": null,
"is_bot": false,
"headline": "Bump version to v1.1.1",
"author_name": "Takeru Ohta",
"author_login": "sile",
"committed_at": "2021-08-29T01:01:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9bf47f849023c515e711652d848beb535c0c4361",
"body": "Fix `Read` implementations of zlib/gzip decoders to allow zero-length read buffers",
"is_bot": false,
"headline": "Merge pull request #62 from sile/issue-61",
"author_name": "Takeru Ohta",
"author_login": "sile",
"committed_at": "2021-08-29T01:00:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "796c921e17cc4a1af5a0b17687115204faa26901",
"body": null,
"is_bot": false,
"headline": "Fix to allow zero-length read buffers",
"author_name": "Takeru Ohta",
"author_login": "sile",
"committed_at": "2021-08-29T00:51:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e58597ba56efc97539aeb5cc9ecd79a5d6c6af67",
"body": null,
"is_bot": false,
"headline": "Bump version to 1.1.0",
"author_name": "Takeru Ohta",
"author_login": "sile",
"committed_at": "2021-04-17T16:13:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2985d72de49db2529b875a05c6ef9348a23de3df",
"body": null,
"is_bot": false,
"headline": "Bump version to v1.1.0",
"author_name": "Takeru Ohta",
"author_login": "sile",
"committed_at": "2021-04-17T16:12:48Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ed1a60ea7b698eef57e7852e32161054d2827fb3",
"body": "Add `Lz77Decoder`",
"is_bot": false,
"headline": "Merge pull request #60 from sile/lz77decoder",
"author_name": "Takeru Ohta",
"author_login": "sile",
"committed_at": "2021-04-17T16:09:31Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4c2a93e5f88704311eb9d1d04beac623cccad15e",
"body": null,
"is_bot": false,
"headline": "Fix a bug",
"author_name": "Takeru Ohta",
"author_login": "sile",
"committed_at": "2021-04-17T09:16:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fcdeb85b2268cb5456ae828dc03b4d2742e51bf4",
"body": null,
"is_bot": false,
"headline": "Update Crago.toml",
"author_name": "Takeru Ohta",
"author_login": "sile",
"committed_at": "2021-04-17T09:10:38Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "de6a74a1b02f0e789077458ab88dac7e3b52f853",
"body": null,
"is_bot": false,
"headline": "Add basic test",
"author_name": "Takeru Ohta",
"author_login": "sile",
"committed_at": "2021-04-17T09:10:14Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2c0afd2629fac8302266f8a3715a9162f242188a",
"body": null,
"is_bot": false,
"headline": "Remove `Lz77Decoder::reserve` method",
"author_name": "Takeru Ohta",
"author_login": "sile",
"committed_at": "2021-04-17T09:03:11Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9dc61a86cbd2e372b51c53664146b2aeeb8d7fdc",
"body": null,
"is_bot": false,
"headline": "Update docs",
"author_name": "Takeru Ohta",
"author_login": "sile",
"committed_at": "2021-04-17T09:02:43Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c445f644cdc98328a40afa303d71ee0f02c20811",
"body": null,
"is_bot": false,
"headline": "Make truncate_old_buffer method private",
"author_name": "Takeru Ohta",
"author_login": "sile",
"committed_at": "2021-04-17T08:52:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b325532f0355a8f98c7426c95c6aec4a61b4df6a",
"body": null,
"is_bot": false,
"headline": "Add `Lz77Decoder`",
"author_name": "Takeru Ohta",
"author_login": "sile",
"committed_at": "2021-03-28T13:23:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0bb54dd341dfcdc7bdf5941ebdafab2efbd532d6",
"body": null,
"is_bot": false,
"headline": "Bump version to v1.0.4",
"author_name": "Takeru Ohta",
"author_login": "sile",
"committed_at": "2021-03-16T13:36:31Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "681d26d614036398ff9e322e02c7068b2372fac9",
"body": "Support incremental writes",
"is_bot": false,
"headline": "Merge pull request #28 from sile/issue-27",
"author_name": "Takeru Ohta",
"author_login": "sile",
"committed_at": "2021-03-16T13:34:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "65d7cb2f9600af25458f11ed5cbc7e7ff815db52",
"body": null,
"is_bot": false,
"headline": "Suppress inevitable clippy warnings",
"author_name": "Takeru Ohta",
"author_login": "sile",
"committed_at": "2021-03-16T13:30:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "74d65b8fa3c2b87ecc42e05d6fd3b89309fb1df2",
"body": null,
"is_bot": false,
"headline": "Fix lint warnings",
"author_name": "Takeru Ohta",
"author_login": "sile",
"committed_at": "2021-03-16T13:12:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3fbb55ffbf6d5a8988ec9d141a4ca6b7b0bb85cc",
"body": null,
"is_bot": false,
"headline": "Merge branch 'master' into issue-27",
"author_name": "Takeru Ohta",
"author_login": "sile",
"committed_at": "2021-03-16T13:06:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fdad237f44d0159a4db6479eb09e72b9f830c84f",
"body": null,
"is_bot": false,
"headline": "Bump version to v1.0.3",
"author_name": "Takeru Ohta",
"author_login": "sile",
"committed_at": "2020-10-25T03:30:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "dbf927a4d65ff0db40734469f977451b49f3b37d",
"body": "Fix #56",
"is_bot": false,
"headline": "Merge pull request #57 from sile/fix-issue56",
"author_name": "Takeru Ohta",
"author_login": "sile",
"committed_at": "2020-10-25T03:29:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7db8a47425572df62b4b65578f4ed7138e882541",
"body": null,
"is_bot": false,
"headline": "Prevent DEFLATE decoder from consuming extra byte",
"author_name": "Takeru Ohta",
"author_login": "sile",
"committed_at": "2020-10-18T08:38:56Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2f19f120b633db573f020c6aac856cee66e7c237",
"body": null,
"is_bot": false,
"headline": "Update README.md",
"author_name": "Takeru Ohta",
"author_login": "sile",
"committed_at": "2020-07-02T13:35:42Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "454510b7138ec15d682d1e43e7326437b9453f0a",
"body": null,
"is_bot": false,
"headline": "Update workflow name",
"author_name": "Takeru Ohta",
"author_login": "sile",
"committed_at": "2020-07-02T13:26:50Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5d92ef896e76138b23ee1342ecc2974575a8810a",
"body": null,
"is_bot": false,
"headline": "Remove outdated flag.",
"author_name": "Takeru Ohta",
"author_login": "sile",
"committed_at": "2020-07-02T13:25:59Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "457095c4b6bc5fa328e73fc21f8c8460f4872271",
"body": "Use GitHub Actions and Coveralls instead of TravisCI and Codecov.",
"is_bot": false,
"headline": "Merge pull request #54 from sile/use-github-actions",
"author_name": "Takeru Ohta",
"author_login": "sile",
"committed_at": "2020-07-02T13:17:13Z",
"body_truncated": false,
"is_coding_agent": false
}
],
"releases_count": 11,
"commits_last_year": 36,
"latest_release_at": "2026-07-25T12:43:35Z",
"latest_release_tag": "v2.3.1",
"releases_from_tags": false,
"days_since_last_push": 0,
"active_weeks_last_year": 5,
"days_since_latest_release": 0,
"mean_days_between_releases": 175.9
},
"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": "libflate",
"exists": true,
"license": "MIT",
"keywords": [
"deflate",
"gzip",
"zlib",
"compression",
"no-std"
],
"ecosystem": "crates",
"matches_repo": true,
"registry_url": "https://crates.io/crates/libflate",
"is_deprecated": false,
"latest_version": "2.3.1",
"repository_url": "https://github.com/sile/libflate",
"versions_count": 46,
"total_downloads": 43632513,
"dependents_count": null,
"deprecation_note": null,
"maintainers_count": null,
"monthly_downloads": 2163850,
"first_published_at": "2016-10-16T20:25:53.769186Z",
"latest_published_at": "2026-07-25T12:43:50.662287Z",
"latest_version_yanked": false,
"days_since_latest_publish": 0
},
{
"name": "libflate_lz77",
"exists": true,
"license": "MIT",
"keywords": [
"lz77",
"compression"
],
"ecosystem": "crates",
"matches_repo": true,
"registry_url": "https://crates.io/crates/libflate_lz77",
"is_deprecated": false,
"latest_version": "2.3.0",
"repository_url": "https://github.com/sile/libflate",
"versions_count": 10,
"total_downloads": 39330079,
"dependents_count": null,
"deprecation_note": null,
"maintainers_count": null,
"monthly_downloads": 2122275,
"first_published_at": "2020-02-25T12:25:19.147575Z",
"latest_published_at": "2026-04-16T22:46:34.210436Z",
"latest_version_yanked": false,
"days_since_latest_publish": 99
}
]
},
"popularity": {
"forks": 41,
"stars": 201,
"watchers": 5,
"fork_history": {
"days": [
{
"date": "2016-11-23",
"count": 1
},
{
"date": "2017-05-30",
"count": 1
},
{
"date": "2017-06-19",
"count": 1
},
{
"date": "2017-12-02",
"count": 1
},
{
"date": "2017-12-25",
"count": 1
},
{
"date": "2018-06-06",
"count": 1
},
{
"date": "2018-08-29",
"count": 1
},
{
"date": "2018-09-11",
"count": 1
},
{
"date": "2018-09-16",
"count": 1
},
{
"date": "2018-09-21",
"count": 1
},
{
"date": "2018-12-01",
"count": 1
},
{
"date": "2018-12-16",
"count": 1
},
{
"date": "2019-01-18",
"count": 1
},
{
"date": "2019-04-13",
"count": 1
},
{
"date": "2019-05-20",
"count": 1
},
{
"date": "2019-05-21",
"count": 1
},
{
"date": "2019-07-21",
"count": 1
},
{
"date": "2019-09-04",
"count": 1
},
{
"date": "2020-02-26",
"count": 1
},
{
"date": "2020-03-19",
"count": 1
},
{
"date": "2020-03-31",
"count": 1
},
{
"date": "2020-05-17",
"count": 1
},
{
"date": "2020-05-29",
"count": 1
},
{
"date": "2020-06-24",
"count": 1
},
{
"date": "2020-07-15",
"count": 1
},
{
"date": "2021-07-14",
"count": 1
},
{
"date": "2021-08-27",
"count": 1
},
{
"date": "2022-07-23",
"count": 1
},
{
"date": "2023-02-05",
"count": 1
},
{
"date": "2023-04-19",
"count": 1
},
{
"date": "2023-05-23",
"count": 1
},
{
"date": "2023-06-10",
"count": 1
},
{
"date": "2024-04-30",
"count": 1
},
{
"date": "2025-01-17",
"count": 1
},
{
"date": "2025-10-24",
"count": 1
},
{
"date": "2025-11-11",
"count": 1
},
{
"date": "2026-04-14",
"count": 1
},
{
"date": "2026-04-26",
"count": 1
},
{
"date": "2026-06-21",
"count": 1
},
{
"date": "2026-07-23",
"count": 1
}
],
"complete": true,
"collected": 40,
"total_forks": 41
},
"star_history": null,
"open_issues_and_prs": 3
},
"ai_readiness": {
"has_nix": false,
"example_dirs": [
"examples"
],
"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",
"flate_bench/Cargo.toml",
"libflate_lz77/Cargo.toml"
],
"largest_source_bytes": 61646,
"source_files_sampled": 24,
"oversized_source_files": 1,
"agent_instruction_files": [],
"agent_instruction_max_bytes": null
},
"dependencies": {
"manifests": [
"Cargo.toml",
"flate_bench/Cargo.toml",
"libflate_lz77/Cargo.toml"
],
"advisories": {
"error": "No resolved dependencies carried a version and a supported ecosystem",
"scope": "repository_graph",
"source": null,
"findings": [],
"collected": false,
"malicious": [],
"truncated": false,
"by_severity": {},
"advisory_count": 0,
"affected_count": 0,
"assessed_count": 0,
"malicious_count": 0,
"assessed_package": null,
"unassessed_count": 10,
"direct_affected_count": 0
},
"ecosystems": [
"crates"
],
"dependencies": [
{
"name": "adler32",
"manifest": "Cargo.toml",
"ecosystem": "crates",
"version_constraint": "1"
},
{
"name": "crc32fast",
"manifest": "Cargo.toml",
"ecosystem": "crates",
"version_constraint": "1.1.1"
},
{
"name": "dary_heap",
"manifest": "Cargo.toml",
"ecosystem": "crates",
"version_constraint": "0.3.5"
},
{
"name": "libflate_lz77",
"manifest": "Cargo.toml",
"ecosystem": "crates",
"version_constraint": "2.3.0"
},
{
"name": "no_std_io2",
"manifest": "Cargo.toml",
"ecosystem": "crates",
"version_constraint": "0.9"
},
{
"name": "clap",
"manifest": "flate_bench/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "4"
},
{
"name": "flate2",
"manifest": "flate_bench/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "*"
},
{
"name": "inflate",
"manifest": "flate_bench/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "*"
},
{
"name": "libflate",
"manifest": "flate_bench/Cargo.toml",
"ecosystem": "crates",
"version_constraint": null
},
{
"name": "rle-decode-fast",
"manifest": "libflate_lz77/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "1.0.0"
},
{
"name": "no_std_io2",
"manifest": "libflate_lz77/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "0.9"
},
{
"name": "hashbrown",
"manifest": "libflate_lz77/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "0.16"
}
],
"all_dependencies": {
"error": null,
"source": "github-sbom",
"packages": [
{
"name": "adler32",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "clap",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "crc32fast",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "dary_heap",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "flate2",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "hashbrown",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "inflate",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "libflate_lz77",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "no_std_io2",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "rle-decode-fast",
"direct": true,
"version": null,
"ecosystem": "crates"
}
],
"collected": true,
"truncated": false,
"total_count": 10,
"direct_count": 10,
"indirect_count": 0
}
},
"maintainership": {
"issues": {
"open_prs": 0,
"merged_prs": 45,
"open_issues": 3,
"closed_ratio": 0.93,
"closed_issues": 40,
"closed_unmerged_prs": 1
},
"bus_factor": 1,
"bot_contributors": 0,
"top_contributors": [
{
"type": "User",
"login": "sile",
"commits": 292,
"avatar_url": "https://avatars.githubusercontent.com/u/181413?v=4"
},
{
"type": "User",
"login": "Shnatsel",
"commits": 18,
"avatar_url": "https://avatars.githubusercontent.com/u/291257?v=4"
},
{
"type": "User",
"login": "abraemer",
"commits": 1,
"avatar_url": "https://avatars.githubusercontent.com/u/11058200?v=4"
},
{
"type": "User",
"login": "kupiakos",
"commits": 1,
"avatar_url": "https://avatars.githubusercontent.com/u/3309728?v=4"
},
{
"type": "User",
"login": "FauxFaux",
"commits": 1,
"avatar_url": "https://avatars.githubusercontent.com/u/328180?v=4"
},
{
"type": "User",
"login": "tesaguri",
"commits": 1,
"avatar_url": "https://avatars.githubusercontent.com/u/16436551?v=4"
},
{
"type": "User",
"login": "olback",
"commits": 1,
"avatar_url": "https://avatars.githubusercontent.com/u/8039145?v=4"
},
{
"type": "User",
"login": "HybridEidolon",
"commits": 1,
"avatar_url": "https://avatars.githubusercontent.com/u/141511?v=4"
},
{
"type": "User",
"login": "weiznich",
"commits": 1,
"avatar_url": "https://avatars.githubusercontent.com/u/1674512?v=4"
},
{
"type": "User",
"login": "igor-raits",
"commits": 1,
"avatar_url": "https://avatars.githubusercontent.com/u/2866862?v=4"
}
],
"contributors_sampled": 20,
"top_contributor_share": 0.89
},
"quality_signals": {
"has_ci": true,
"has_tests": false,
"ci_workflows": [
"ci.yml",
"release.yml"
],
"has_docs_dir": false,
"linter_configs": [],
"has_editorconfig": false,
"has_linter_config": false,
"has_precommit_config": false
},
"security_signals": {
"lockfiles": [],
"scorecard": {
"checks": [
{
"name": "Binary-Artifacts",
"score": 10,
"reason": "no binaries found in the repo",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#binary-artifacts"
},
{
"name": "Branch-Protection",
"score": 0,
"reason": "branch protection not enabled on development/release branches",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#branch-protection"
},
{
"name": "CI-Tests",
"score": 8,
"reason": "5 out of 6 merged PRs checked by a CI test -- score normalized to 8",
"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": 1,
"reason": "Found 2/14 approved changesets -- score normalized to 1",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#code-review"
},
{
"name": "Contributors",
"score": 10,
"reason": "project has 8 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": 5,
"reason": "6 commit(s) and 1 issue activity found in the last 90 days -- score normalized to 5",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#maintained"
},
{
"name": "Packaging",
"score": 10,
"reason": "packaging workflow 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": 0,
"reason": "SAST tool is not run on all commits -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#sast"
},
{
"name": "Security-Policy",
"score": 0,
"reason": "security policy file not detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#security-policy"
},
{
"name": "Signed-Releases",
"score": null,
"reason": "no releases found",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#signed-releases"
},
{
"name": "Token-Permissions",
"score": 0,
"reason": "detected GitHub workflow tokens with excessive permissions",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#token-permissions"
},
{
"name": "Vulnerabilities",
"score": 10,
"reason": "0 existing vulnerabilities detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#vulnerabilities"
}
],
"commit": "c53ef6c117342451da1c376be1aec43d5f846de3",
"ran_at": "2026-07-25T12:50:30Z",
"aggregate_score": 4.8,
"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-25T12:44:00Z",
"oldest_open_prs": [],
"last_merged_pr_at": "2026-07-25T12:41:25Z",
"ci_last_conclusion": "SUCCESS",
"oldest_open_issues": [
{
"number": 12,
"created_at": "2017-12-22T16:17:07Z",
"last_comment_at": "2019-03-17T11:10:29Z",
"last_comment_author": "sile"
},
{
"number": 41,
"created_at": "2019-08-03T05:24:50Z",
"last_comment_at": "2019-09-17T18:09:01Z",
"last_comment_author": "mjc"
},
{
"number": 44,
"created_at": "2020-01-14T17:42:47Z",
"last_comment_at": "2020-01-15T10:50:47Z",
"last_comment_author": "sile"
}
]
}
},
"config": {
"disabled_metrics": [],
"disabled_categories": [],
"disabled_components": {}
},
"source": {
"url": "https://github.com/sile/libflate",
"host": "github.com",
"name": "libflate",
"owner": "sile"
},
"metrics": {
"overall": {
"key": "overall",
"band": "at_risk",
"name": "Overall health",
"note": "High-Risk Jurisdiction Policy applies a 75% multiplier to weighted overall health and gives it an At risk ceiling of 49.",
"notes": [
{
"code": "jurisdiction_overall_adjustment",
"params": {
"cap": 49,
"pct": 75
}
}
],
"value": 45,
"inputs": {
"security": 36,
"vitality": 69,
"community": 64,
"governance": 68,
"engineering": 54,
"high_risk_jurisdiction_cap": 49,
"high_risk_jurisdiction_multiplier": 75,
"weighted_overall_before_jurisdiction": 60,
"overall_after_jurisdiction_multiplier": 45
},
"components": []
},
"categories": [
{
"key": "vitality",
"band": "moderate",
"name": "Vitality",
"value": 69,
"weight": 0.22,
"metrics": [
{
"key": "development_activity",
"band": "moderate",
"name": "Development activity",
"note": null,
"notes": [],
"value": 59,
"inputs": {
"commits_last_year": 36,
"human_commit_share": 1,
"days_since_last_push": 0,
"active_weeks_last_year": 5
},
"components": [
{
"key": "push_recency",
"name": "Push recency",
"detail": "last push 0 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "push_recency",
"params": {
"days": 0
}
}
],
"max_points": 36
},
{
"key": "commit_cadence",
"name": "Commit cadence",
"detail": "5/52 weeks with commits",
"points": 3.5,
"status": "partial",
"details": [
{
"code": "commit_cadence_weeks",
"params": {
"weeks": 5
}
}
],
"max_points": 36
},
{
"key": "commit_volume",
"name": "Commit volume",
"detail": "36 commits in the last year",
"points": 14.1,
"status": "partial",
"details": [
{
"code": "commits_last_year",
"params": {
"count": 36
}
}
],
"max_points": 18
},
{
"key": "openssf_scorecard_maintained",
"name": "OpenSSF Scorecard: Maintained",
"detail": "6 commit(s) and 1 issue activity found in the last 90 days -- score normalized to 5",
"points": 5,
"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": 84,
"inputs": {
"releases_count": 11,
"latest_release_tag": "v2.3.1",
"releases_from_tags": false,
"days_since_latest_release": 0,
"mean_days_between_releases": 175.9
},
"components": [
{
"key": "ships_releases",
"name": "Ships releases",
"detail": "11 releases published",
"points": 27,
"status": "met",
"details": [
{
"code": "releases_published",
"params": {
"count": 11
}
}
],
"max_points": 27
},
{
"key": "release_recency",
"name": "Release recency",
"detail": "latest release 0 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "release_recency",
"params": {
"days": 0
}
}
],
"max_points": 36
},
{
"key": "release_cadence",
"name": "Release cadence",
"detail": "a release every ~175.9 days",
"points": 12.6,
"status": "partial",
"details": [
{
"code": "release_cadence",
"params": {
"gap": 175.9
}
}
],
"max_points": 27
},
{
"key": "openssf_scorecard_signed_releases",
"name": "OpenSSF Scorecard: Signed-Releases",
"detail": "no releases found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 10
}
]
},
{
"key": "abandonment",
"band": "excellent",
"name": "Abandonment",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"cap": null,
"state": "maintained",
"guards": [],
"signals": [],
"red_flag": false,
"multiplier_pct": 100,
"declared_reason": null,
"unverified_reason": null,
"unanswered_open_prs": null,
"unanswered_open_issues": null,
"days_since_last_merged_pr": null,
"days_since_last_human_commit": 0,
"days_since_last_human_commit_is_floor": false
},
"components": [
{
"key": "project_is_still_maintained",
"name": "Project is still maintained",
"detail": "last human commit 0 days ago",
"points": 100,
"status": "met",
"details": [
{
"code": "abandonment_maintained",
"params": {
"days": 0
}
}
],
"max_points": 100
}
]
}
],
"description": "Is the project alive — is code being written and are releases shipping?"
},
{
"key": "community",
"band": "moderate",
"name": "Community & Adoption",
"value": 64,
"weight": 0.18,
"metrics": [
{
"key": "popularity",
"band": "moderate",
"name": "Popularity & adoption",
"note": null,
"notes": [],
"value": 54,
"inputs": {
"forks": 41,
"stars": 201,
"watchers": 5,
"growth_state": "unverified",
"growth_factor_pct": 100,
"growth_unverified_reason": "no_history"
},
"components": [
{
"key": "stars",
"name": "Stars",
"detail": "201 stars",
"points": 37.3,
"status": "partial",
"details": [
{
"code": "stars",
"params": {
"count": 201
}
}
],
"max_points": 60
},
{
"key": "forks",
"name": "Forks",
"detail": "41 forks",
"points": 13.4,
"status": "partial",
"details": [
{
"code": "forks",
"params": {
"count": 41
}
}
],
"max_points": 25
},
{
"key": "watchers",
"name": "Watchers",
"detail": "5 watchers",
"points": 3.3,
"status": "partial",
"details": [
{
"code": "watchers",
"params": {
"count": 5
}
}
],
"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 (MIT)",
"points": 22.5,
"status": "met",
"details": [
{
"code": "license_standard",
"params": {}
},
{
"code": "license_spdx",
"params": {
"spdx": "MIT"
}
}
],
"max_points": 22.5
},
{
"key": "contributing_guide",
"name": "CONTRIBUTING guide",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 18
},
{
"key": "code_of_conduct",
"name": "Code of conduct",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 13.5
},
{
"key": "issue_template",
"name": "Issue template",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.2
},
{
"key": "pr_template",
"name": "PR template",
"detail": null,
"points": 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": 100,
"inputs": {
"packages": [
"libflate",
"libflate_lz77"
],
"dependents": null,
"ecosystems": "crates",
"total_downloads": 82962592,
"monthly_downloads": 4286125
},
"components": [
{
"key": "monthly_downloads",
"name": "Monthly downloads",
"detail": "4,286,125 downloads/month across crates",
"points": 80,
"status": "met",
"details": [
{
"code": "downloads_monthly",
"params": {
"count": 4286125,
"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": 68,
"weight": 0.24,
"metrics": [
{
"key": "maintainer_resilience",
"band": "at_risk",
"name": "Maintainer resilience (bus factor)",
"note": null,
"notes": [],
"value": 35,
"inputs": {
"bus_factor": 1,
"contributors_sampled": 20,
"top_contributor_share": 0.89
},
"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 89% of commits",
"points": 2.5,
"status": "partial",
"details": [
{
"code": "top_contributor_share",
"params": {
"share": 89
}
}
],
"max_points": 22.5
},
{
"key": "contributor_breadth",
"name": "Contributor breadth",
"detail": "20 contributors",
"points": 13.5,
"status": "met",
"details": [
{
"code": "contributors_sampled",
"params": {
"count": 20
}
}
],
"max_points": 13.5
},
{
"key": "openssf_scorecard_contributors",
"name": "OpenSSF Scorecard: Contributors",
"detail": "project has 8 contributing companies or organizations",
"points": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
},
{
"key": "responsiveness",
"band": "good",
"name": "Issue & PR responsiveness",
"note": null,
"notes": [],
"value": 82,
"inputs": {
"merged_prs": 45,
"open_issues": 3,
"closed_issues": 40,
"issue_closed_ratio": 0.93,
"closed_unmerged_prs": 1
},
"components": [
{
"key": "issue_resolution",
"name": "Issue resolution",
"detail": "93% of issues closed",
"points": 43.5,
"status": "partial",
"details": [
{
"code": "issues_closed_share",
"params": {
"share": 93
}
}
],
"max_points": 46.75
},
{
"key": "pr_acceptance",
"name": "PR acceptance",
"detail": "45/46 decided PRs merged",
"points": 37.4,
"status": "partial",
"details": [
{
"code": "decided_prs_merged",
"params": {
"merged": 45,
"decided": 46
}
}
],
"max_points": 38.25
},
{
"key": "openssf_scorecard_code_review",
"name": "OpenSSF Scorecard: Code-Review",
"detail": "Found 2/14 approved changesets -- score normalized to 1",
"points": 1.5,
"status": "partial",
"details": [],
"max_points": 15
}
]
},
{
"key": "stewardship",
"band": "moderate",
"name": "Ownership & stewardship",
"note": "Excluded from scoring (no data or not applicable): Verified domain. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"verified_domain"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 68,
"inputs": {
"followers": 469,
"owner_type": "User",
"is_verified": null,
"owner_login": "sile",
"public_repos": 325,
"account_age_days": 6036
},
"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": "469 followers of sile",
"points": 19.2,
"status": "partial",
"details": [
{
"code": "owner_followers",
"params": {
"count": 469,
"login": "sile"
}
}
],
"max_points": 25
},
{
"key": "track_record",
"name": "Track record",
"detail": "325 public repos, account ~16 yr old",
"points": 25,
"status": "met",
"details": [
{
"code": "public_repos",
"params": {
"count": 325
}
},
{
"code": "account_age_years",
"params": {
"years": 16
}
}
],
"max_points": 25
}
]
},
{
"key": "package_maintenance",
"band": "excellent",
"name": "Package maintenance",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"packages": [
"libflate",
"libflate_lz77"
],
"ecosystems": "crates",
"any_deprecated": false,
"min_days_since_publish": 0
},
"components": [
{
"key": "published_resolvable",
"name": "Published & resolvable",
"detail": "2 package(s) on crates",
"points": 25,
"status": "met",
"details": [
{
"code": "packages_published",
"params": {
"count": 2,
"ecosystems": "crates"
}
}
],
"max_points": 25
},
{
"key": "publish_recency",
"name": "Publish recency",
"detail": "latest publish 0 days ago",
"points": 35,
"status": "met",
"details": [
{
"code": "publish_recency",
"params": {
"days": 0
}
}
],
"max_points": 35
},
{
"key": "version_history",
"name": "Version history",
"detail": "46 published versions",
"points": 20,
"status": "met",
"details": [
{
"code": "published_versions",
"params": {
"count": 46
}
}
],
"max_points": 20
},
{
"key": "not_deprecated",
"name": "Not deprecated",
"detail": "active, not deprecated or yanked",
"points": 20,
"status": "met",
"details": [
{
"code": "package_not_deprecated",
"params": {}
}
],
"max_points": 20
}
]
}
],
"description": "Will the project survive its people — bus factor, responsiveness, who backs it, and package upkeep?"
},
{
"key": "engineering",
"band": "moderate",
"name": "Engineering Quality",
"value": 54,
"weight": 0.2,
"metrics": [
{
"key": "engineering_practices",
"band": "at_risk",
"name": "Engineering practices",
"note": null,
"notes": [],
"value": 40,
"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": "2 workflow(s)",
"points": 24,
"status": "met",
"details": [
{
"code": "ci_workflows",
"params": {
"count": 2
}
}
],
"max_points": 24
},
{
"key": "tests_present",
"name": "Tests present",
"detail": null,
"points": 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": "5 out of 6 merged PRs checked by a CI test -- score normalized to 8",
"points": 16,
"status": "partial",
"details": [],
"max_points": 20
}
]
},
{
"key": "documentation",
"band": "good",
"name": "Documentation",
"note": null,
"notes": [],
"value": 75,
"inputs": {
"topics": [
"rust",
"gzip",
"zlib",
"deflate-algorithm"
],
"has_wiki": true,
"homepage": "https://docs.rs/libflate",
"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": "https://docs.rs/libflate",
"points": 15,
"status": "met",
"details": [],
"max_points": 15
},
{
"key": "repository_description",
"name": "Repository description",
"detail": null,
"points": 10,
"status": "met",
"details": [],
"max_points": 10
},
{
"key": "topics",
"name": "Topics",
"detail": "4 topics",
"points": 10,
"status": "met",
"details": [
{
"code": "topics_count",
"params": {
"count": 4
}
}
],
"max_points": 10
},
{
"key": "wiki",
"name": "Wiki",
"detail": null,
"points": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
}
],
"description": "Are baseline engineering and documentation practices in place?"
},
{
"key": "security",
"band": "at_risk",
"name": "Security",
"value": 36,
"weight": 0.16,
"metrics": [
{
"key": "security_posture",
"band": "at_risk",
"name": "Security posture",
"note": "Excluded from scoring (no data or not applicable): Signed-Releases. Remaining weights renormalized. High-Risk Jurisdiction Policy applies a 75% multiplier to Security posture and gives it an At risk ceiling of 49.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"signed_releases"
]
}
},
{
"code": "weights_renormalized",
"params": {}
},
{
"code": "jurisdiction_posture_adjustment",
"params": {
"cap": 49,
"pct": 75
}
}
],
"value": 36,
"inputs": {
"source": "openssf_scorecard",
"checks_evaluated": 17,
"scorecard_version": "v5.5.0",
"checks_inconclusive": 1,
"scorecard_aggregate": 4.8,
"high_risk_jurisdiction_cap": 49,
"high_risk_jurisdiction_multiplier": 75,
"security_posture_after_multiplier": 36,
"security_posture_before_jurisdiction": 48
},
"components": [
{
"key": "binary_artifacts",
"name": "Binary-Artifacts",
"detail": "no binaries found in the repo",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
},
{
"key": "branch_protection",
"name": "Branch-Protection",
"detail": "branch protection not enabled on development/release branches",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "ci_tests",
"name": "CI-Tests",
"detail": "5 out of 6 merged PRs checked by a CI test -- score normalized to 8",
"points": 2,
"status": "partial",
"details": [],
"max_points": 2.5
},
{
"key": "cii_best_practices",
"name": "CII-Best-Practices",
"detail": "no effort to earn an OpenSSF best practices badge detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 2.5
},
{
"key": "code_review",
"name": "Code-Review",
"detail": "Found 2/14 approved changesets -- score normalized to 1",
"points": 0.8,
"status": "partial",
"details": [],
"max_points": 7.5
},
{
"key": "contributors",
"name": "Contributors",
"detail": "project has 8 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": "6 commit(s) and 1 issue activity found in the last 90 days -- score normalized to 5",
"points": 3.8,
"status": "partial",
"details": [],
"max_points": 7.5
},
{
"key": "packaging",
"name": "Packaging",
"detail": "packaging workflow detected",
"points": 5,
"status": "met",
"details": [],
"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 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "security_policy",
"name": "Security-Policy",
"detail": "security policy file not detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "signed_releases",
"name": "Signed-Releases",
"detail": "no releases found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 7.5
},
{
"key": "token_permissions",
"name": "Token-Permissions",
"detail": "detected GitHub workflow tokens with excessive permissions",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "vulnerabilities",
"name": "Vulnerabilities",
"detail": "0 existing vulnerabilities detected",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
}
]
},
{
"key": "high_risk_jurisdiction_exposure",
"band": "good",
"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": 75,
"inputs": {
"meaning": "self-published location evidence; not nationality or citizenship",
"red_flag": true,
"exposures": [
{
"role": "contributor_organization",
"count": 1,
"country": "Russia"
}
],
"policy_countries": [
"Russia",
"Iran",
"North Korea"
],
"review_only_matches": 0,
"assessed_self_published_locations": 17
},
"components": [
{
"key": "policy_exposure_multiplier",
"name": "Policy exposure multiplier",
"detail": "Russia: contributor_organization (1)",
"points": 75,
"status": "partial",
"details": [
{
"code": "jurisdiction_exposure",
"params": {
"role": "contributor_organization",
"count": 1,
"country": "Russia"
}
}
],
"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": 43,
"weight": 0,
"metrics": [
{
"key": "ai_agent_context",
"band": "critical",
"name": "Agent context & guidance",
"note": null,
"notes": [],
"value": 28,
"inputs": {
"has_llms_txt": false,
"legible_history_share": 0.53,
"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": "53 of 100 human commits state their intent (structured subject or explanatory body)",
"points": 28.3,
"status": "partial",
"details": [
{
"code": "legible_history",
"params": {
"legible": 53,
"sampled": 100
}
}
],
"max_points": 40
}
]
},
{
"key": "ai_verify_loop",
"band": "at_risk",
"name": "Verify loop (build / test / typecheck)",
"note": null,
"notes": [],
"value": 34,
"inputs": {
"has_nix": false,
"has_tests": false,
"lockfiles": [],
"has_dockerfile": false,
"typed_language": true,
"bootstrap_files": [],
"has_devcontainer": false,
"has_linter_config": false,
"typecheck_configs": [],
"agent_commit_share": 0,
"toolchain_manifests": [
"Cargo.toml",
"flate_bench/Cargo.toml",
"libflate_lz77/Cargo.toml"
],
"dependency_bot_commit_share": 0
},
"components": [
{
"key": "one_command_bootstrap",
"name": "One-command bootstrap",
"detail": "Cargo.toml, flate_bench/Cargo.toml, libflate_lz77/Cargo.toml (toolchain convention, no task runner)",
"points": 12.6,
"status": "partial",
"details": [
{
"code": "toolchain_convention",
"params": {
"files": "Cargo.toml, flate_bench/Cargo.toml, libflate_lz77/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": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
},
{
"key": "demonstrated_agent_practice",
"name": "Demonstrated agent practice",
"detail": "no agent-authored commits among the last 100",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_agent_authored_commits",
"params": {
"sampled": 100
}
}
],
"max_points": 10
},
{
"key": "automated_maintenance",
"name": "Automated maintenance",
"detail": "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": "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": 98,
"inputs": {
"primary_language": "Rust",
"largest_source_bytes": 61646,
"source_files_sampled": 24,
"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/24 source files over 60KB",
"points": 52.7,
"status": "partial",
"details": [
{
"code": "oversized_source_files",
"params": {
"kb": 60,
"sampled": 24,
"oversized": 1
}
}
],
"max_points": 55
}
]
},
{
"key": "ai_interfaces",
"band": "at_risk",
"name": "Machine-readable interfaces",
"note": null,
"notes": [],
"value": 40,
"inputs": {
"example_dirs": [
"examples"
],
"has_mcp_signal": false,
"api_schema_files": []
},
"components": [
{
"key": "api_schema_openapi_graphql_proto",
"name": "API schema (OpenAPI/GraphQL/proto)",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 40
},
{
"key": "mcp_server",
"name": "MCP server",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 20
},
{
"key": "runnable_examples",
"name": "Runnable examples",
"detail": "examples",
"points": 40,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "examples"
}
}
],
"max_points": 40
}
]
}
],
"description": "How well is the repo equipped to be developed and maintained with AI coding agents? An independent, experimental badge — weight 0.0, so it is surfaced on its own and does not affect the overall health score."
}
],
"metrics_version": "1.13.0"
},
"warnings": [
"Star history unavailable: GitHub GraphQL error: Resource not accessible by personal access token",
"Could not fetch crates package 'flate_bench' from its registry",
"deps.dev does not index crates:libflate@2.3.1; advisories assessed against the repository dependency graph instead",
"No resolved dependencies carried a version and a supported ecosystem"
],
"report_type": "repository",
"generated_at": "2026-07-25T12:50:51.377008Z",
"schema_version": "0.27.0",
"badge_url": "https://raw.githubusercontent.com/inspect-software/badges/main/v1/s/sile/libflate.svg",
"full_name": "sile/libflate",
"license_state": "standard",
"license_spdx": "MIT"
}