原始 JSON 报告 机器可读
{
"data": {
"repo": {
"topics": [],
"is_fork": false,
"size_kb": 264,
"has_wiki": true,
"homepage": null,
"languages": {
"Rust": 131149
},
"pushed_at": "2026-06-29T13:39:04Z",
"created_at": "2018-12-05T14:48:45Z",
"owner_type": "User",
"updated_at": "2026-07-26T19:50:13Z",
"description": "Fork of std::sync::Arc with lots of utilities useful for FFI",
"is_archived": false,
"is_disabled": false,
"license_spdx": "Apache-2.0",
"default_branch": "master",
"license_spdx_raw": "Apache-2.0",
"primary_language": "Rust",
"significant_languages": [
"Rust"
]
},
"owner": {
"blog": "http://manishearth.github.io/",
"name": "Manish Goregaokar",
"type": "User",
"login": "Manishearth",
"company": "@google",
"location": "Berkeley, CA",
"followers": 2369,
"avatar_url": "https://avatars.githubusercontent.com/u/1617736?v=4",
"created_at": "2012-04-06T05:41:40Z",
"is_verified": null,
"public_repos": 433,
"account_age_days": 5229
},
"license": {
"state": "standard",
"spdx_id": "Apache-2.0",
"raw_spdx": "Apache-2.0",
"file_present": true,
"scorecard_found": true,
"profile_has_license": true
},
"activity": {
"releases": [
{
"tag": "v0.1.16",
"kind": "patch",
"published_at": "2026-06-29T13:38:40Z"
},
{
"tag": "v0.1.15",
"kind": "patch",
"published_at": "2025-10-06T02:54:48Z"
},
{
"tag": "v0.1.14",
"kind": "patch",
"published_at": "2024-10-07T04:02:16Z"
},
{
"tag": "v0.1.13",
"kind": "patch",
"published_at": "2024-06-17T18:50:50Z"
},
{
"tag": "v0.1.12",
"kind": "patch",
"published_at": "2024-05-29T00:03:00Z"
},
{
"tag": "v0.1.10",
"kind": "patch",
"published_at": "2023-11-26T08:42:20Z"
},
{
"tag": "v0.1.9",
"kind": "patch",
"published_at": "2023-07-05T22:29:38Z"
},
{
"tag": "v0.1.8",
"kind": "patch",
"published_at": "2022-09-06T16:46:29Z"
},
{
"tag": "v0.1.6",
"kind": "patch",
"published_at": "2022-06-06T17:09:28Z"
},
{
"tag": "v0.1.5",
"kind": "patch",
"published_at": "2021-12-21T08:28:00Z"
},
{
"tag": "v0.1.4",
"kind": "patch",
"published_at": "2021-12-15T04:15:00Z"
}
],
"recent_commits": [
{
"oid": "1e29128ea8006b1da899cf7a6ceeb615a6b17364",
"body": null,
"is_bot": false,
"headline": "Publish 0.1.16",
"author_name": "Manish Goregaokar",
"author_login": "Manishearth",
"committed_at": "2026-06-29T13:38:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "36eaabd2ad52fdaf7b4eebd220923d4024aea1e0",
"body": "Fallible alloc",
"is_bot": false,
"headline": "Merge pull request #137 from justanotheranonymoususer/fallible-alloc",
"author_name": "Manish Goregaokar",
"author_login": "Manishearth",
"committed_at": "2026-06-29T11:49:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "04bb97ad751488edc8ab9c0cde339e28d3fe7e49",
"body": "\r\nBumped from 1.76.",
"is_bot": false,
"headline": "Update tests.yml to test Rust 1.81",
"author_name": "justanotheranonymoususer",
"author_login": "justanotheranonymoususer",
"committed_at": "2026-06-29T11:06:38Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fba73976dc21b39a988387ea8252f72acac521a4",
"body": null,
"is_bot": false,
"headline": "Delete Cargo.lock",
"author_name": "justanotheranonymoususer",
"author_login": "justanotheranonymoususer",
"committed_at": "2026-06-28T11:45:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6aa1a8d229e04ad9a32c38e441848e0c18c96516",
"body": "\r\nInspired by Rust nightly API (#32838).\r\n\r\nFixes #25.",
"is_bot": false,
"headline": "Implement fallible allocation",
"author_name": "justanotheranonymoususer",
"author_login": "justanotheranonymoususer",
"committed_at": "2026-06-28T11:43:27Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3d55189450036e311eb59a3d940896482a642e62",
"body": "Fix unsoundness in Arc::as_mut_ptr",
"is_bot": false,
"headline": "Merge pull request #135 from Manishearth/fix-as-mut-ptr-unsound",
"author_name": "Manish Goregaokar",
"author_login": "Manishearth",
"committed_at": "2026-06-01T20:17:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8cc02225b0ca2d6c33130d2e19cda790d86e1a14",
"body": "Update Arc::as_mut_ptr to use core::ptr::addr_of_mut! directly on the raw pointer, avoiding intermediate &mut references. This allows obtaining a *mut pointer to shared data without triggering a Unique retag in Miri, making the call sound.\n\nAdd a regression test verifying that obtaining the pointer from a non-unique Arc is sound (does not trigger Miri UB).\n\nFixes #134",
"is_bot": false,
"headline": "agent-driven: Fix unsoundness in Arc::as_mut_ptr using addr_of_mut!",
"author_name": "Manish Goregaokar",
"author_login": "Manishearth",
"committed_at": "2026-06-01T20:12:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "bfac68cc6979c7cac6f476b283bd9d70ce27f341",
"body": "Update slice DST ops, use &raw mut, and improve documentation",
"is_bot": false,
"headline": "Merge pull request #128 from A248/pointer-cleanup-and-docs",
"author_name": "Manish Goregaokar",
"author_login": "Manishearth",
"committed_at": "2026-01-22T21:05:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9792493d7e025c909205926ab5943a9e3e984d41",
"body": null,
"is_bot": false,
"headline": "Use core::ptr (no-std compat)",
"author_name": "A248",
"author_login": "A248",
"committed_at": "2026-01-22T20:06:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1c1b26f911586861bf6faacf1be3fb6eb4d3e210",
"body": null,
"is_bot": false,
"headline": "Switch to addr_of_mut! for 1.82 compat (drop this commit if unwanted)",
"author_name": "A248",
"author_login": "A248",
"committed_at": "2026-01-21T19:36:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0f5dc1428eb04d25d9ebfd7547d5cfdc04749f6c",
"body": null,
"is_bot": false,
"headline": "Run cargo fmt",
"author_name": "A248",
"author_login": "A248",
"committed_at": "2026-01-21T19:31:45Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "96eb99930d878bd7c3aba1aa115cccf51958ca1a",
"body": null,
"is_bot": false,
"headline": "Update slice DST ops, use &raw mut, and improve documentation",
"author_name": "A248",
"author_login": "A248",
"committed_at": "2026-01-14T11:36:00Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1a6249efe5c827c7775011e473329676c810e1bd",
"body": "Implement From<&str>, From<String> for OffsetArc<str>",
"is_bot": false,
"headline": "Merge pull request #126 from jplatte/offset-from-str",
"author_name": "Manish Goregaokar",
"author_login": "Manishearth",
"committed_at": "2025-12-31T18:15:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "83e396e3f0caa4322d5ede903c90a4b45d454775",
"body": "Implement PartialOrd, Ord, Hash for OffsetArc",
"is_bot": false,
"headline": "Merge pull request #125 from jplatte/jplatte/offset-ord",
"author_name": "Manish Goregaokar",
"author_login": "Manishearth",
"committed_at": "2025-12-31T18:11:41Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7fa2e4d72b2aca39e08b56e1b2f17dbf440542b7",
"body": null,
"is_bot": false,
"headline": "Implement From<&str>, From<String> for OffsetArc<str>",
"author_name": "Jonas Platte",
"author_login": "jplatte",
"committed_at": "2025-12-31T18:11:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3b152d48f2586b2115a038af38e6fc6686a04529",
"body": null,
"is_bot": false,
"headline": "Implement Hash for OffsetArc",
"author_name": "Jonas Platte",
"author_login": "jplatte",
"committed_at": "2025-12-31T18:09:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0f7da89b74038bef057e2ece3fe50438a3dacfec",
"body": null,
"is_bot": false,
"headline": "Implement PartialOrd, Ord for OffsetArc",
"author_name": "Jonas Platte",
"author_login": "jplatte",
"committed_at": "2025-12-31T18:08:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6ef61c39d289d74197b7a66750443430f5585eaf",
"body": "Allow non-Sized types in OffsetArc",
"is_bot": false,
"headline": "Merge pull request #124 from jplatte/offset-qsized",
"author_name": "Manish Goregaokar",
"author_login": "Manishearth",
"committed_at": "2025-12-31T18:05:59Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4ce4c9faa5171ba0c04d45e3b632acbe93219b85",
"body": null,
"is_bot": false,
"headline": "Allow non-Sized types in OffsetArc",
"author_name": "Jonas Platte",
"author_login": "jplatte",
"committed_at": "2025-12-31T17:39:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e9393ad94d476e1fdb0fc6d439bc870d67c4a9ab",
"body": "missing colon",
"is_bot": false,
"headline": "Merge pull request #123 from sumitftr/patch-1",
"author_name": "Manish Goregaokar",
"author_login": "Manishearth",
"committed_at": "2025-11-10T17:24:28Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3fc193a619175a461faf6d6cb976e304418420f0",
"body": null,
"is_bot": false,
"headline": "missing colon",
"author_name": "Sumit Modak",
"author_login": "sumitpsm",
"committed_at": "2025-11-08T17:54:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "dce5f19f9eb3c8b7730383d88d825eb2d72b063d",
"body": "Unpin nightly toolchain used for threadsan CI job",
"is_bot": false,
"headline": "Merge pull request #122 from iorizu/master",
"author_name": "Manish Goregaokar",
"author_login": "Manishearth",
"committed_at": "2025-11-05T17:10:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9fc61e02f5dc92478073086959d088b98e8b56da",
"body": null,
"is_bot": false,
"headline": "Unpin nightly toolchain used for threadsan CI job",
"author_name": "Ifeanyi Orizu",
"author_login": "iorizu",
"committed_at": "2025-11-05T16:33:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "622a0f15bf2443457b1efd9fc77199027e87c687",
"body": null,
"is_bot": false,
"headline": "Bump to 0.1.15, update edition to 2024",
"author_name": "Manish Goregaokar",
"author_login": "Manishearth",
"committed_at": "2025-10-06T02:54:48Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d5128343f96d9709d2f2496a0b51f3c2bc9600f6",
"body": "Add `Arc::into_unique` for converting back to `UniqueArc` (redux).",
"is_bot": false,
"headline": "Merge pull request #109 from tobz/tobz/uniquearc-into-inner",
"author_name": "Manish Goregaokar",
"author_login": "Manishearth",
"committed_at": "2025-10-06T02:53:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "abc6247bc169bcaa6e98cd62a96c63bc9569bbe6",
"body": "Disable doctests for thread sanitizer job",
"is_bot": false,
"headline": "Merge pull request #120 from iorizu/fix-ci",
"author_name": "Manish Goregaokar",
"author_login": "Manishearth",
"committed_at": "2025-09-15T19:54:06Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "70a115d8ee6a17f1ce8c61b70a96c1003d1677ca",
"body": null,
"is_bot": false,
"headline": "Disable doctests for thread sanitizer job",
"author_name": "Ifeanyi Orizu",
"author_login": "iorizu",
"committed_at": "2025-09-15T19:23:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "722bf847ea1bba22f443b1108f94921664133cb3",
"body": "Add more permissive `UnwindSafe` impls to shared pointer types",
"is_bot": false,
"headline": "Merge pull request #118 from iorizu/add-unwindsafe-impl",
"author_name": "Manish Goregaokar",
"author_login": "Manishearth",
"committed_at": "2025-09-09T22:23:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "29c5674941801d8ece41795f2a68364a41aabbbb",
"body": "Following the example of the standard library, it is ok for shared\npointer types to be UnwindSafe when the pointee is only RefUnwindSafe.\nThis is because UnwindSafe's purpose is to warn against the possibility\nof broken invariants being witnessed through the type, which is not\npossible with shared pointer types because they don't allow mutation of\nthe pointee.",
"is_bot": false,
"headline": "Add weaker UnwindSafe impls for shared Arc pointers",
"author_name": "Ifeanyi Orizu",
"author_login": "iorizu",
"committed_at": "2025-09-09T21:20:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4ab4af95529424b9c2b49d2537270c951a91b733",
"body": null,
"is_bot": false,
"headline": "Ensure that line endings are always LF",
"author_name": "Ifeanyi Orizu",
"author_login": "iorizu",
"committed_at": "2025-09-09T16:26:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5ae7e641e20d6153ceefd0ff7f9a6b7dc159861e",
"body": null,
"is_bot": false,
"headline": "Add elided lifetimes to return types",
"author_name": "Ifeanyi Orizu",
"author_login": "iorizu",
"committed_at": "2025-09-09T16:03:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "22bf2c53c4882fb1bcac598e61c1274c79cb1a31",
"body": "Update comment around Arc::drop_inner fence",
"is_bot": false,
"headline": "Merge pull request #115 from goffrie/patch-1",
"author_name": "Manish Goregaokar",
"author_login": "Manishearth",
"committed_at": "2025-06-17T17:15:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7464b454450792e7bc029a08240c36a80647f714",
"body": "After #114 this is using a fence and not a load, so adjust the comment accordingly\r\n(by copying the comment from the stdlib).\r\nI removed upstream's comment about possibly using a load instead of a fence though;",
"is_bot": false,
"headline": "Update comment around Arc::drop_inner fence",
"author_name": "Geoffry Song",
"author_login": "goffrie",
"committed_at": "2025-06-16T18:50:31Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c3a4a086bec38c79f4702cb3ae6223cd7f9b7b40",
"body": "Change the acq load to explict acq fence for #113",
"is_bot": false,
"headline": "Merge pull request #114 from CXWorks/master",
"author_name": "Manish Goregaokar",
"author_login": "Manishearth",
"committed_at": "2025-05-07T20:01:16Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7501eda4977f400283e25bc408a012195e18a5e0",
"body": null,
"is_bot": false,
"headline": "Change the acq load to explict acq fence",
"author_name": "cxworks",
"author_login": "JustForMaven",
"committed_at": "2025-05-07T15:58:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6ff0527036632be33a6ed45e5e8a0fb6243dee47",
"body": "Update README.md",
"is_bot": false,
"headline": "Merge pull request #112 from ReinierMaas/patch-1",
"author_name": "Manish Goregaokar",
"author_login": "Manishearth",
"committed_at": "2025-01-23T17:26:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "766654074494b45230a81a8e09b655e68f9d2719",
"body": "Fix a small typo that is also published to `crates.io`.",
"is_bot": false,
"headline": "Update README.md",
"author_name": "Reinier Maas",
"author_login": "ReinierMaas",
"committed_at": "2025-01-23T12:15:11Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "28f12907867e132128cfbc51678116579a9da623",
"body": null,
"is_bot": false,
"headline": "Address PR feedback.",
"author_name": "Toby Lawrence",
"author_login": "tobz",
"committed_at": "2025-01-04T20:24:43Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "24d2d56208cd0140cbccce795e13c4ae7f2588cf",
"body": "Make `HeaderSliceWithLen…` always contain slices",
"is_bot": false,
"headline": "Merge pull request #111 from steffahn/headerslice-always-slice",
"author_name": "Manish Goregaokar",
"author_login": "Manishearth",
"committed_at": "2025-01-02T22:42:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5a20cd2418419a28bae8cd73d8da262cbd4e2713",
"body": null,
"is_bot": false,
"headline": "more comments on layout",
"author_name": "Frank Steffahn",
"author_login": "steffahn",
"committed_at": "2025-01-02T21:58:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1d85bc2c6ebfe6f38971bf9f7e72fdd910cafb66",
"body": null,
"is_bot": false,
"headline": "get test running when std isn't disabled",
"author_name": "Toby Lawrence",
"author_login": "tobz",
"committed_at": "2025-01-01T19:07:41Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "24911a8a27d45b8498a06c158edb0b0b33f60bf3",
"body": null,
"is_bot": false,
"headline": "tweak to compensate for 2015 edition",
"author_name": "Toby Lawrence",
"author_login": "tobz",
"committed_at": "2025-01-01T18:59:43Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "850939926b0f492781a0a343bda279fd4888f751",
"body": "…n-slice case",
"is_bot": false,
"headline": "Reword comment that still referenced str and the (removed) general no…",
"author_name": "Frank Steffahn",
"author_login": "steffahn",
"committed_at": "2024-12-31T21:23:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "479769a35c97086cff3375cbc92795dced1fb083",
"body": null,
"is_bot": false,
"headline": "unify ThinArc::into_raw and ::ptr implementations",
"author_name": "Frank Steffahn",
"author_login": "steffahn",
"committed_at": "2024-12-31T21:18:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5e9b442fd7e86b9776db0a5a52d02727ea34911d",
"body": null,
"is_bot": false,
"headline": "Add debug-assertion of `protected_into_thin` also to `with_arc_mut`",
"author_name": "Frank Steffahn",
"author_login": "steffahn",
"committed_at": "2024-12-31T21:18:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "28f33f2f1d611ae2ea3efd038b4f819462472bd7",
"body": "…o the access; also remove additional conversion step from Drop for ThinArc",
"is_bot": false,
"headline": "limit direct accesses to ThinArc.ptr field, by making thin_to_thick d…",
"author_name": "Frank Steffahn",
"author_login": "steffahn",
"committed_at": "2024-12-31T21:18:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7bf5aa489a9d0828d0254db638240aaccfb7d3c2",
"body": null,
"is_bot": false,
"headline": "more consistent use of existing internal APIs",
"author_name": "Frank Steffahn",
"author_login": "steffahn",
"committed_at": "2024-12-31T21:18:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5418c47cfbf5252434061c4c6f1086a2b7bf67cb",
"body": null,
"is_bot": false,
"headline": "change HeaderSliceWithLen... to only contain actual slice type",
"author_name": "Frank Steffahn",
"author_login": "steffahn",
"committed_at": "2024-12-31T21:18:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6ccaace46e46b549dfc3a3bde4694c4a6c1a345c",
"body": "Seprate HeaderSliceWithLength into checked and unchecked variants",
"is_bot": false,
"headline": "Merge pull request #108 from Manishearth/headerslice-checked",
"author_name": "Manish Goregaokar",
"author_login": "Manishearth",
"committed_at": "2024-12-31T20:21:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "93aa3099a238ff06960d539721837e100766307e",
"body": null,
"is_bot": false,
"headline": "Add Arc::into_unique for converting back to UniqueArc.",
"author_name": "Toby Lawrence",
"author_login": "tobz",
"committed_at": "2024-12-29T15:51:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c823d7ceed295ef28af894b3f68c1e4e46fef0bc",
"body": null,
"is_bot": false,
"headline": "guard",
"author_name": "Manish Goregaokar",
"author_login": "Manishearth",
"committed_at": "2024-12-27T19:52:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d2febb4a551f65b85fe85c5ac93601d9ef782852",
"body": null,
"is_bot": false,
"headline": "Handle replacing",
"author_name": "Manish Goregaokar",
"author_login": "Manishearth",
"committed_at": "2024-12-25T22:22:11Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3f421fd6b8f60747b10b53f3a68e49a9450326b1",
"body": null,
"is_bot": false,
"headline": "protected",
"author_name": "Manish Goregaokar",
"author_login": "Manishearth",
"committed_at": "2024-12-25T22:12:56Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5de1d9f15758f16f662fe7c494a5287f2e1ac60d",
"body": null,
"is_bot": false,
"headline": "fixes",
"author_name": "Manish Goregaokar",
"author_login": "Manishearth",
"committed_at": "2024-12-25T22:04:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "197193f1fbd1c19e973c668ad3d91601682bec96",
"body": null,
"is_bot": false,
"headline": "rm alias",
"author_name": "Manish Goregaokar",
"author_login": "Manishearth",
"committed_at": "2024-12-25T22:03:09Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1b65f3487ee04cb08ca6cde3ed42b7521c30953c",
"body": null,
"is_bot": false,
"headline": "Seprate HeaderSliceWithLength into checked and unchecked variants",
"author_name": "Manish Goregaokar",
"author_login": "Manishearth",
"committed_at": "2024-12-25T19:04:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d302445ffd9dc8a863dde1d4bec0894e114efa5f",
"body": "This reverts commit 281803d38ddb5f8c8c06c9ad856883de81233884.\n\nReverts #103. See #106",
"is_bot": false,
"headline": "Revert \"Add Arc::into_unique for converting back to UniqueArc.\"",
"author_name": "Manish Goregaokar",
"author_login": "Manishearth",
"committed_at": "2024-12-25T17:46:45Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fae2334e83302948b17a7b449858931db0de1ac3",
"body": "implement `Serialize` and `Deserialize` for `UniqueArc`",
"is_bot": false,
"headline": "Merge pull request #104 from tguichaoua/arc_unique_serde",
"author_name": "Manish Goregaokar",
"author_login": "Manishearth",
"committed_at": "2024-12-19T16:18:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9a9b2e1140efa4c0a6c384eaa89bb61d05061dd8",
"body": null,
"is_bot": false,
"headline": "implement `Serialize` and `Deserialize` for `UniqueArc`",
"author_name": "Tristan Guichaoua",
"author_login": "tguichaoua",
"committed_at": "2024-12-19T12:17:11Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3c3d47a3afdf43ad776769e20616bb4d5f919a7f",
"body": "Add `Arc::into_unique` for converting back to `UniqueArc`.",
"is_bot": false,
"headline": "Merge pull request #103 from tobz/tobz/arc-into-inner",
"author_name": "Manish Goregaokar",
"author_login": "Manishearth",
"committed_at": "2024-12-03T01:20:59Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "281803d38ddb5f8c8c06c9ad856883de81233884",
"body": null,
"is_bot": false,
"headline": "Add Arc::into_unique for converting back to UniqueArc.",
"author_name": "Toby Lawrence",
"author_login": "tobz",
"committed_at": "2024-11-25T16:50:48Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "538c700f98c301919868b54dc72bd94de52a8456",
"body": "Add may_dangle to Arc::drop conditionally",
"is_bot": false,
"headline": "Merge pull request #101 from GnomedDev/dropck-eyepatch",
"author_name": "Manish Goregaokar",
"author_login": "Manishearth",
"committed_at": "2024-10-14T16:22:14Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3a829a4f14c8354c54d756dd6914455ed91ae9fc",
"body": "Make the actual read happen in UB tests",
"is_bot": false,
"headline": "Merge pull request #102 from Manishearth/ub-test-wildcard",
"author_name": "Manish Goregaokar",
"author_login": "Manishearth",
"committed_at": "2024-10-14T16:20:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b5b1b05b721f1ee70baa25d0791405f89b435014",
"body": null,
"is_bot": false,
"headline": "Make the actual read happen",
"author_name": "Manish Goregaokar",
"author_login": "Manishearth",
"committed_at": "2024-10-14T16:17:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6c812ecdb8b4aa7444c403eca803c6f33d7787f5",
"body": "Fix clippy warnings",
"is_bot": false,
"headline": "Merge pull request #100 from GnomedDev/clippy",
"author_name": "Manish Goregaokar",
"author_login": "Manishearth",
"committed_at": "2024-10-14T16:15:00Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c47dc6ac9f86fc8ef0fc9787ee24a79b5f70f55d",
"body": null,
"is_bot": false,
"headline": "Fix CI",
"author_name": "GnomedDev",
"author_login": "GnomedDev",
"committed_at": "2024-10-14T16:14:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a9614f96c0eb04818cea5f98416b05ca34d9e383",
"body": null,
"is_bot": false,
"headline": "Add may_dangle to Arc::drop conditionally",
"author_name": "GnomedDev",
"author_login": "GnomedDev",
"committed_at": "2024-10-12T20:53:06Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3b66e099a5d9590fe48e57f2d6769c996702382f",
"body": null,
"is_bot": false,
"headline": "Fix clippy warnings",
"author_name": "GnomedDev",
"author_login": "GnomedDev",
"committed_at": "2024-10-12T17:24:55Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c80cca43356de7109ec4fc3069c4e9e7ef971e6d",
"body": null,
"is_bot": false,
"headline": "Publish 0.1.14",
"author_name": "Manish Goregaokar",
"author_login": "Manishearth",
"committed_at": "2024-10-07T04:02:16Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0b08a6822fee7f734985535467b3b0cc04356553",
"body": "Made a mistake with the publish",
"is_bot": false,
"headline": "Merge branch 'pr-98'",
"author_name": "Manish Goregaokar",
"author_login": "Manishearth",
"committed_at": "2024-10-07T04:01:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "879873ec3f96b5e217fc3d2c6e3d0d48dbce4acf",
"body": null,
"is_bot": false,
"headline": "Bump version to 0.1.13",
"author_name": "Arthur Silva",
"author_login": "arthurprs",
"committed_at": "2024-09-29T09:22:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "748a00e5ac822c33723003927bbb35119d93e9c0",
"body": "Add UniqueArc::from_header_and_uninit_slice",
"is_bot": false,
"headline": "Merge pull request #95 from arthurprs/thinarc-maybeuninit",
"author_name": "Manish Goregaokar",
"author_login": "Manishearth",
"committed_at": "2024-09-26T20:02:03Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2fa198dbf25a1ed5c277c0177131754fcd9ee2bc",
"body": null,
"is_bot": false,
"headline": "incorporate review feedback",
"author_name": "Arthur Silva",
"author_login": "arthurprs",
"committed_at": "2024-09-26T18:30:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c9b3d01b44140ef9f6c188b88775ba4bf6c35a91",
"body": "Add ThinArc::with_arc_mut",
"is_bot": false,
"headline": "Merge pull request #96 from arthurprs/thinarc-with-arc-mut",
"author_name": "Manish Goregaokar",
"author_login": "Manishearth",
"committed_at": "2024-09-16T01:57:28Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e1b5c625ce2bce5d197aee111b61cad1f7efd406",
"body": null,
"is_bot": false,
"headline": "Add UniqueArc::from_header_and_uninit_slice",
"author_name": "Arthur Silva",
"author_login": "arthurprs",
"committed_at": "2024-08-18T16:27:00Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "12f3f7b07d954c83ac456601d889c39c0bd6f6bb",
"body": null,
"is_bot": false,
"headline": "Add ThinArc::with_arc_mut",
"author_name": "Arthur Silva",
"author_login": "arthurprs",
"committed_at": "2024-08-18T16:24:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "626454bd93d323b964c54bcb7657998a2ba2e285",
"body": null,
"is_bot": false,
"headline": "Bump to 0.1.13",
"author_name": "Manish Goregaokar",
"author_login": "Manishearth",
"committed_at": "2024-06-17T18:50:50Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2686349a50ac132ab6cd7c896af36e3ad811e03b",
"body": "Derive Copy and Clone HeaderSlice and HeaderWithLength",
"is_bot": false,
"headline": "Merge pull request #92 from SimonSapin/dst_and_make_mut",
"author_name": "Manish Goregaokar",
"author_login": "Manishearth",
"committed_at": "2024-06-17T17:10:41Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ba018d9a0a5338daa8fa5b4995d5d38ea593a012",
"body": "We (apollo-compiler) have an AST where most nodes are wrapped in,\napproximately:\n\n```rust\nstruct Node<T>(triomphe::Arc<(SourceSpan, T)>);\n```\n\n`Arc` allows subtrees to be shared without deep cloning,\nand `Arc::make_mut` is used extensively for mutability\nwith clone-on-write semantics.\n\nNow I would l\n[…]\n`T: Sized`\nbut that weirdness is contained in the module defining `struct Node`.)\n\nWhile I don’t have a use for this today this PR also derives `Copy`,\nand gives `HeaderWithLength` the same treatment.",
"is_bot": false,
"headline": "Derive Copy and Clone HeaderSlice and HeaderWithLength",
"author_name": "Simon Sapin",
"author_login": "SimonSapin",
"committed_at": "2024-06-17T09:40:18Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "c45151eda0afd4178cb865a96c9222f0f42283a3",
"body": "Add MSRV",
"is_bot": false,
"headline": "Merge pull request #91 from Manishearth/msrv",
"author_name": "Manish Goregaokar",
"author_login": "Manishearth",
"committed_at": "2024-06-05T22:41:14Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "376ce66c7ac08fea55a9a0bc8fc7743ad0b3f869",
"body": null,
"is_bot": false,
"headline": "Add MSRV",
"author_name": "Manish Goregaokar",
"author_login": "Manishearth",
"committed_at": "2024-06-05T22:39:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3887e04236cf94b3d400527caccd6ec2ee62a5f5",
"body": null,
"is_bot": false,
"headline": "Bump to 0.1.12",
"author_name": "Manish Goregaokar",
"author_login": "Manishearth",
"committed_at": "2024-05-29T00:03:00Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4a778df85c172cbe4728bebe3a12df896003bcf0",
"body": "Remove sized requirement from Arc::from_raw",
"is_bot": false,
"headline": "Merge pull request #85 from stepancheg/arc-from-raw-unsized",
"author_name": "Manish Goregaokar",
"author_login": "Manishearth",
"committed_at": "2024-04-25T16:58:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2de2ca41188901fa43cbd1a28dbff6c44c08da6d",
"body": "`ptr.byte_sub` is stable since 1.75.0.\n\nThe tricky part here is figuring out offset of `ArcInner.data` for\nDST. This PR assumes that raw pointer is coming from existing `Arc`\nso it is safe to convert to reference. I'm not 100% sure this is\nalways correct.\n\nCorrect version would require `Layout::for_value_raw` (or\n`mem::align_of_val_raw`) which is not stable.\n\nThis can be used to convert `Arc<String>` to `Arc<dyn Debug>`.",
"is_bot": false,
"headline": "Remove sized requirement from Arc::from_raw",
"author_name": "Stepan Koltsov",
"author_login": "stepancheg",
"committed_at": "2024-04-24T22:46:28Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "221076c169208accbe338be9565689c5d7cd0652",
"body": "Document PartialEq for Arc bug",
"is_bot": false,
"headline": "Merge pull request #88 from stepancheg/partial-eq-bug",
"author_name": "Manish Goregaokar",
"author_login": "Manishearth",
"committed_at": "2024-04-19T00:24:55Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "dfc9e61b68c297bb060c3763424dedd91c1f8704",
"body": "If `T` is not `Eq`, we cannot use pointer comparison properly.\n\nBut removing pointer comparison kills performance, maybe it is for\nthe best.",
"is_bot": false,
"headline": "Document PartialEq for Arc bug",
"author_name": "Stepan Koltsov",
"author_login": "stepancheg",
"committed_at": "2024-04-18T23:13:00Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "81e3602a038c61d02c801ae8ebc9636774fd7586",
"body": "Simplify/fix Arc::from_iter",
"is_bot": false,
"headline": "Merge pull request #87 from stepancheg/from-iter",
"author_name": "Manish Goregaokar",
"author_login": "Manishearth",
"committed_at": "2024-04-18T22:52:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6df7026d9b99bbbc49d1fcbe4f874e464aee1025",
"body": "When exact size iterator is not empty, `.next()` is called twice\nafter iteration ends, and the second call is allowed to return\n`Some` for non-fused iterator.\n\nAlso less code, and probably faster because fewer branches and\nsmaller binary size.",
"is_bot": false,
"headline": "Simplify/fix Arc::from_iter",
"author_name": "Stepan Koltsov",
"author_login": "stepancheg",
"committed_at": "2024-04-18T22:43:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5779c5ec98d450ec8b2af14f136c50d0e38bddb0",
"body": "All features for docs.rs",
"is_bot": false,
"headline": "Merge pull request #86 from stepancheg/docs-rs-all-features",
"author_name": "Manish Goregaokar",
"author_login": "Manishearth",
"committed_at": "2024-04-18T15:51:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3e77905d8ab21b8d17018c3784085076963a7c94",
"body": null,
"is_bot": false,
"headline": "All features for docs.rs",
"author_name": "Stepan Koltsov",
"author_login": "stepancheg",
"committed_at": "2024-04-18T15:46:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0db2a24e32d445e10a8b4e1494611e9fb379429b",
"body": "Use ptr::addr_eq instead of == in Arc::ptr_eq",
"is_bot": false,
"headline": "Merge pull request #84 from stepancheg/addr-eq",
"author_name": "Manish Goregaokar",
"author_login": "Manishearth",
"committed_at": "2024-04-17T21:26:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e0b7dd21d3ddc69798d3dd97b1404c1c45b78689",
"body": "- This is what `std::sync::Arc` does\n- This is behavior change\n- Previous behavior was unreliable because compiler could merge/duplicate vtables\n- Doing mostly to reduce the number of compiler warnings\n- New code requires Rust >= 1.76.0",
"is_bot": false,
"headline": "Use ptr::addr_eq instead of == in Arc::ptr_eq",
"author_name": "Stepan Koltsov",
"author_login": "stepancheg",
"committed_at": "2024-04-17T21:15:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8922bc1de4ee6338d40892b9090559f1322d7166",
"body": "Cleanup after strong_count implementation",
"is_bot": false,
"headline": "Merge pull request #83 from stepancheg/cleanup",
"author_name": "Manish Goregaokar",
"author_login": "Manishearth",
"committed_at": "2024-04-17T21:13:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d2b95c99f9f70fe005438a0520e2730ed8cf65d8",
"body": null,
"is_bot": false,
"headline": "Cleanup after strong_count implementation",
"author_name": "Stepan Koltsov",
"author_login": "stepancheg",
"committed_at": "2024-04-17T21:10:10Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0235c515026ce9c2804bb898328eb94e91497dcf",
"body": "*::strong_count",
"is_bot": false,
"headline": "Merge pull request #82 from stepancheg/strong-count",
"author_name": "Manish Goregaokar",
"author_login": "Manishearth",
"committed_at": "2024-04-17T21:08:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3e4fc38d1771712c69ce485279c696fe36f647da",
"body": "API similar to `std::sync::Arc`.\n\n`ArcBorrow::strong_count` is made to take `&Self` rather than `Self`\nfor consistency with `ArcBorrow::ptr_eq`, although I think by value\nmight be more appropriate. Maybe change everything in version 0.2?",
"is_bot": false,
"headline": "*::strong_count",
"author_name": "Stepan Koltsov",
"author_login": "stepancheg",
"committed_at": "2024-04-17T21:04:43Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8df9391da38ad95e73033eb3007e25d8e6b78daa",
"body": "Relax the requirements for `Send`/`Sync` implementations of `UniqueArc`",
"is_bot": false,
"headline": "Merge pull request #81 from steffahn/relax_send_sync_for_UniqueArc",
"author_name": "Manish Goregaokar",
"author_login": "Manishearth",
"committed_at": "2024-01-09T18:10:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6018136e39779c30990a2ef0d7b5de1507df2a6f",
"body": "Fix arc borrow provenance of, and add a test that actually uses `ArcBorrow`",
"is_bot": false,
"headline": "Merge pull request #78 from steffahn/fix_arc_borrow_provinance",
"author_name": "Manish Goregaokar",
"author_login": "Manishearth",
"committed_at": "2024-01-09T18:10:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8246dfe9ef97c1c84ab640a0f73c7a955603ac29",
"body": "Lift the `T: 'static` bound from `ArcBorrow::with_arc`",
"is_bot": false,
"headline": "Merge pull request #80 from steffahn/lift_ArcBorrow_with_arc_static",
"author_name": "Manish Goregaokar",
"author_login": "Manishearth",
"committed_at": "2024-01-09T18:10:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3de92feb4f094e7ad6668d1d4e5ce22e9a4b09f8",
"body": null,
"is_bot": false,
"headline": "Relax the requirements for Send/Sync impl of UniqueArc",
"author_name": "Frank Steffahn",
"author_login": "steffahn",
"committed_at": "2024-01-09T17:43:24Z",
"body_truncated": false,
"is_coding_agent": false
}
],
"releases_count": 11,
"commits_last_year": 31,
"latest_release_at": "2026-06-29T13:38:40Z",
"latest_release_tag": "v0.1.16",
"releases_from_tags": true,
"days_since_last_push": 32,
"active_weeks_last_year": 10,
"days_since_latest_release": 32,
"mean_days_between_releases": 183.5
},
"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": "triomphe",
"exists": true,
"license": "MIT OR Apache-2.0",
"keywords": [
"data-structure",
"ffi",
"arc",
"sync",
"concurrency",
"data-structures"
],
"ecosystem": "crates",
"matches_repo": true,
"registry_url": "https://crates.io/crates/triomphe",
"is_deprecated": false,
"latest_version": "0.1.16",
"repository_url": "https://github.com/Manishearth/triomphe",
"versions_count": 17,
"total_downloads": 81540152,
"dependents_count": null,
"deprecation_note": null,
"maintainers_count": null,
"monthly_downloads": 4347441,
"first_published_at": "2018-12-05T15:12:01.422998Z",
"latest_published_at": "2026-06-29T13:38:49.119256Z",
"latest_version_yanked": false,
"days_since_latest_publish": 32
}
]
},
"popularity": {
"forks": 63,
"stars": 297,
"watchers": 4,
"fork_history": {
"days": [
{
"date": "2020-01-09",
"count": 1
},
{
"date": "2020-02-23",
"count": 1
},
{
"date": "2020-03-23",
"count": 1
},
{
"date": "2020-04-12",
"count": 1
},
{
"date": "2020-06-05",
"count": 1
},
{
"date": "2020-06-18",
"count": 1
},
{
"date": "2020-06-20",
"count": 2
},
{
"date": "2020-07-15",
"count": 1
},
{
"date": "2021-01-10",
"count": 1
},
{
"date": "2021-03-24",
"count": 1
},
{
"date": "2021-04-15",
"count": 1
},
{
"date": "2021-04-27",
"count": 1
},
{
"date": "2021-05-20",
"count": 1
},
{
"date": "2021-06-02",
"count": 1
},
{
"date": "2021-08-06",
"count": 1
},
{
"date": "2021-11-26",
"count": 1
},
{
"date": "2022-01-06",
"count": 1
},
{
"date": "2022-01-10",
"count": 1
},
{
"date": "2022-01-30",
"count": 1
},
{
"date": "2022-02-04",
"count": 1
},
{
"date": "2022-04-28",
"count": 1
},
{
"date": "2022-05-03",
"count": 1
},
{
"date": "2022-07-02",
"count": 1
},
{
"date": "2022-07-06",
"count": 1
},
{
"date": "2022-11-22",
"count": 1
},
{
"date": "2023-05-07",
"count": 1
},
{
"date": "2023-05-17",
"count": 1
},
{
"date": "2023-06-06",
"count": 1
},
{
"date": "2023-10-12",
"count": 1
},
{
"date": "2023-10-22",
"count": 2
},
{
"date": "2023-10-25",
"count": 1
},
{
"date": "2023-11-05",
"count": 1
},
{
"date": "2023-11-29",
"count": 1
},
{
"date": "2024-05-21",
"count": 1
},
{
"date": "2024-06-17",
"count": 1
},
{
"date": "2024-08-03",
"count": 1
},
{
"date": "2024-08-07",
"count": 1
},
{
"date": "2024-09-27",
"count": 1
},
{
"date": "2024-10-03",
"count": 1
},
{
"date": "2024-10-12",
"count": 1
},
{
"date": "2024-11-25",
"count": 1
},
{
"date": "2024-12-18",
"count": 1
},
{
"date": "2024-12-19",
"count": 1
},
{
"date": "2025-01-23",
"count": 1
},
{
"date": "2025-02-06",
"count": 1
},
{
"date": "2025-02-18",
"count": 2
},
{
"date": "2025-02-26",
"count": 1
},
{
"date": "2025-04-22",
"count": 1
},
{
"date": "2025-05-07",
"count": 1
},
{
"date": "2025-07-01",
"count": 1
},
{
"date": "2025-09-09",
"count": 1
},
{
"date": "2025-09-19",
"count": 1
},
{
"date": "2025-11-30",
"count": 1
},
{
"date": "2025-12-31",
"count": 1
},
{
"date": "2026-01-14",
"count": 1
},
{
"date": "2026-06-12",
"count": 1
},
{
"date": "2026-06-28",
"count": 1
},
{
"date": "2026-07-23",
"count": 1
}
],
"complete": true,
"collected": 61,
"total_forks": 63
},
"star_history": null,
"open_issues_and_prs": 18
},
"ai_readiness": {
"has_nix": false,
"example_dirs": [],
"has_llms_txt": false,
"has_dockerfile": false,
"has_mcp_signal": false,
"bootstrap_files": [],
"api_schema_files": [],
"has_devcontainer": false,
"typecheck_configs": [],
"toolchain_manifests": [
"Cargo.toml"
],
"largest_source_bytes": 49394,
"source_files_sampled": 11,
"oversized_source_files": 0,
"agent_instruction_files": [],
"agent_instruction_max_bytes": null
},
"dependencies": {
"manifests": [
"Cargo.toml"
],
"advisories": {
"error": null,
"scope": "published_package",
"source": "osv",
"findings": [],
"collected": true,
"malicious": [],
"truncated": false,
"by_severity": {},
"advisory_count": 0,
"affected_count": 0,
"assessed_count": 11,
"malicious_count": 0,
"assessed_package": "crates:triomphe@0.1.16",
"unassessed_count": 0,
"direct_affected_count": 0
},
"ecosystems": [
"crates"
],
"dependencies": [
{
"name": "serde",
"manifest": "Cargo.toml",
"ecosystem": "crates",
"version_constraint": "1.0"
},
{
"name": "stable_deref_trait",
"manifest": "Cargo.toml",
"ecosystem": "crates",
"version_constraint": "1.1.1"
},
{
"name": "unsize",
"manifest": "Cargo.toml",
"ecosystem": "crates",
"version_constraint": "1.1"
},
{
"name": "arc-swap",
"manifest": "Cargo.toml",
"ecosystem": "crates",
"version_constraint": "1.3.0"
}
],
"all_dependencies": {
"error": null,
"source": "github-sbom",
"packages": [
{
"name": "arc-swap",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "serde",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "stable_deref_trait",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "unsize",
"direct": true,
"version": null,
"ecosystem": "crates"
}
],
"collected": true,
"truncated": false,
"total_count": 4,
"direct_count": 4,
"indirect_count": 0
}
},
"maintainership": {
"issues": {
"open_prs": 3,
"merged_prs": 83,
"open_issues": 15,
"closed_ratio": 0.674,
"closed_issues": 31,
"closed_unmerged_prs": 6
},
"bus_factor": 2,
"bot_contributors": 0,
"top_contributors": [
{
"type": "User",
"login": "Manishearth",
"commits": 112,
"avatar_url": "https://avatars.githubusercontent.com/u/1617736?v=4"
},
{
"type": "User",
"login": "WaffleLapkin",
"commits": 22,
"avatar_url": "https://avatars.githubusercontent.com/u/38225716?v=4"
},
{
"type": "User",
"login": "steffahn",
"commits": 15,
"avatar_url": "https://avatars.githubusercontent.com/u/3986214?v=4"
},
{
"type": "User",
"login": "NobodyXu",
"commits": 14,
"avatar_url": "https://avatars.githubusercontent.com/u/30436523?v=4"
},
{
"type": "User",
"login": "stepancheg",
"commits": 11,
"avatar_url": "https://avatars.githubusercontent.com/u/28969?v=4"
},
{
"type": "User",
"login": "arthurprs",
"commits": 6,
"avatar_url": "https://avatars.githubusercontent.com/u/715958?v=4"
},
{
"type": "User",
"login": "iorizu",
"commits": 5,
"avatar_url": "https://avatars.githubusercontent.com/u/70727219?v=4"
},
{
"type": "User",
"login": "tobz",
"commits": 5,
"avatar_url": "https://avatars.githubusercontent.com/u/222615?v=4"
},
{
"type": "User",
"login": "A248",
"commits": 4,
"avatar_url": "https://avatars.githubusercontent.com/u/22414680?v=4"
},
{
"type": "User",
"login": "matklad",
"commits": 4,
"avatar_url": "https://avatars.githubusercontent.com/u/1711539?v=4"
}
],
"contributors_sampled": 31,
"top_contributor_share": 0.467
},
"quality_signals": {
"has_ci": true,
"has_tests": false,
"ci_workflows": [
"rustfmt.yml",
"tests.yml"
],
"has_docs_dir": false,
"linter_configs": [],
"has_editorconfig": true,
"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": "9 out of 11 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": 7,
"reason": "Found 10/13 approved changesets -- score normalized to 7",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#code-review"
},
{
"name": "Contributors",
"score": 10,
"reason": "project has 18 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": 7,
"reason": "7 commit(s) and 2 issue activity found in the last 90 days -- score normalized to 7",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#maintained"
},
{
"name": "Packaging",
"score": null,
"reason": "packaging workflow not detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#packaging"
},
{
"name": "Pinned-Dependencies",
"score": 0,
"reason": "dependency not pinned by hash detected -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#pinned-dependencies"
},
{
"name": "SAST",
"score": 0,
"reason": "SAST tool is not run on all commits -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#sast"
},
{
"name": "Security-Policy",
"score": 0,
"reason": "security policy file not detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#security-policy"
},
{
"name": "Signed-Releases",
"score": null,
"reason": "no releases found",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#signed-releases"
},
{
"name": "Token-Permissions",
"score": 0,
"reason": "detected GitHub workflow tokens with excessive permissions",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#token-permissions"
},
{
"name": "Vulnerabilities",
"score": 10,
"reason": "0 existing vulnerabilities detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#vulnerabilities"
}
],
"commit": "1e29128ea8006b1da899cf7a6ceeb615a6b17364",
"ran_at": "2026-07-31T14:14:46Z",
"aggregate_score": 4.6,
"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-06-29T13:39:13Z",
"oldest_open_prs": [
{
"number": 61,
"created_at": "2023-06-06T08:29:29Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 94,
"created_at": "2024-08-07T07:26:37Z",
"last_comment_at": "2024-08-09T09:10:14Z",
"last_comment_author": "sokra"
},
{
"number": 138,
"created_at": "2026-07-23T23:08:13Z",
"last_comment_at": null,
"last_comment_author": null
}
],
"last_merged_pr_at": "2026-06-29T11:49:18Z",
"ci_last_conclusion": "SUCCESS",
"oldest_open_issues": [
{
"number": 8,
"created_at": "2020-04-13T17:28:27Z",
"last_comment_at": "2020-04-13T21:56:32Z",
"last_comment_author": "Manishearth"
},
{
"number": 10,
"created_at": "2020-04-13T22:42:54Z",
"last_comment_at": "2021-12-04T11:18:53Z",
"last_comment_author": "NobodyXu"
},
{
"number": 12,
"created_at": "2020-06-05T18:29:46Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 35,
"created_at": "2022-03-28T07:27:10Z",
"last_comment_at": "2026-01-16T14:09:18Z",
"last_comment_author": "Manishearth"
},
{
"number": 52,
"created_at": "2022-11-17T06:04:38Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 54,
"created_at": "2023-01-28T12:18:47Z",
"last_comment_at": "2023-01-30T17:35:02Z",
"last_comment_author": "Manishearth"
},
{
"number": 74,
"created_at": "2023-11-02T19:14:38Z",
"last_comment_at": "2024-09-08T10:51:05Z",
"last_comment_author": "GnomedDev"
},
{
"number": 97,
"created_at": "2024-09-11T12:11:51Z",
"last_comment_at": "2024-09-11T17:39:58Z",
"last_comment_author": "Manishearth"
},
{
"number": 119,
"created_at": "2025-09-11T22:13:33Z",
"last_comment_at": "2025-09-12T17:41:09Z",
"last_comment_author": "iorizu"
},
{
"number": 127,
"created_at": "2026-01-05T12:06:15Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 129,
"created_at": "2026-01-22T20:13:37Z",
"last_comment_at": "2026-01-22T22:01:59Z",
"last_comment_author": "Manishearth"
},
{
"number": 130,
"created_at": "2026-01-22T21:24:13Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 131,
"created_at": "2026-01-22T21:28:21Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 132,
"created_at": "2026-01-24T16:17:26Z",
"last_comment_at": "2026-01-26T15:51:54Z",
"last_comment_author": "Manishearth"
},
{
"number": 133,
"created_at": "2026-04-27T06:02:29Z",
"last_comment_at": "2026-04-27T16:49:13Z",
"last_comment_author": "Manishearth"
}
]
}
},
"config": {
"disabled_metrics": [],
"disabled_categories": [],
"disabled_components": {}
},
"source": {
"url": "https://github.com/Manishearth/triomphe",
"host": "github.com",
"name": "triomphe",
"owner": "Manishearth"
},
"metrics": {
"overall": {
"key": "overall",
"band": "moderate",
"name": "Overall health",
"note": null,
"notes": [],
"value": 61,
"inputs": {
"security": 57,
"vitality": 56,
"community": 66,
"governance": 76,
"engineering": 48
},
"components": []
},
"categories": [
{
"key": "vitality",
"band": "moderate",
"name": "Vitality",
"value": 56,
"weight": 0.22,
"metrics": [
{
"key": "development_activity",
"band": "at_risk",
"name": "Development activity",
"note": null,
"notes": [],
"value": 45,
"inputs": {
"commits_last_year": 31,
"human_commit_share": 1,
"days_since_last_push": 32,
"active_weeks_last_year": 10
},
"components": [
{
"key": "push_recency",
"name": "Push recency",
"detail": "last push 32 days ago",
"points": 18,
"status": "partial",
"details": [
{
"code": "push_recency",
"params": {
"days": 32
}
}
],
"max_points": 36
},
{
"key": "commit_cadence",
"name": "Commit cadence",
"detail": "10/52 weeks with commits",
"points": 6.9,
"status": "partial",
"details": [
{
"code": "commit_cadence_weeks",
"params": {
"weeks": 10
}
}
],
"max_points": 36
},
{
"key": "commit_volume",
"name": "Commit volume",
"detail": "31 commits in the last year",
"points": 13.5,
"status": "partial",
"details": [
{
"code": "commits_last_year",
"params": {
"count": 31
}
}
],
"max_points": 18
},
{
"key": "openssf_scorecard_maintained",
"name": "OpenSSF Scorecard: Maintained",
"detail": "7 commit(s) and 2 issue activity found in the last 90 days -- score normalized to 7",
"points": 7,
"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": 72,
"inputs": {
"releases_count": 11,
"latest_release_tag": "v0.1.16",
"releases_from_tags": true,
"days_since_latest_release": 32,
"mean_days_between_releases": 183.5
},
"components": [
{
"key": "ships_releases",
"name": "Ships releases",
"detail": "11 version tags (no GitHub releases)",
"points": 16.2,
"status": "partial",
"details": [
{
"code": "version_tags_no_releases",
"params": {
"count": 11
}
}
],
"max_points": 27
},
{
"key": "release_recency",
"name": "Release recency",
"detail": "latest release 32 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "release_recency",
"params": {
"days": 32
}
}
],
"max_points": 36
},
{
"key": "release_cadence",
"name": "Release cadence",
"detail": "a release every ~183.5 days",
"points": 12.6,
"status": "partial",
"details": [
{
"code": "release_cadence",
"params": {
"gap": 183.5
}
}
],
"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": 32,
"days_since_last_human_commit_is_floor": false
},
"components": [
{
"key": "project_is_still_maintained",
"name": "Project is still maintained",
"detail": "last human commit 32 days ago",
"points": 100,
"status": "met",
"details": [
{
"code": "abandonment_maintained",
"params": {
"days": 32
}
}
],
"max_points": 100
}
]
}
],
"description": "Is the project alive — is code being written and are releases shipping?"
},
{
"key": "community",
"band": "moderate",
"name": "Community & Adoption",
"value": 66,
"weight": 0.18,
"metrics": [
{
"key": "popularity",
"band": "moderate",
"name": "Popularity & adoption",
"note": null,
"notes": [],
"value": 58,
"inputs": {
"forks": 63,
"stars": 297,
"watchers": 4,
"growth_state": "unverified",
"growth_factor_pct": 100,
"growth_unverified_reason": "no_history"
},
"components": [
{
"key": "stars",
"name": "Stars",
"detail": "297 stars",
"points": 40.1,
"status": "partial",
"details": [
{
"code": "stars",
"params": {
"count": 297
}
}
],
"max_points": 60
},
{
"key": "forks",
"name": "Forks",
"detail": "63 forks",
"points": 14.9,
"status": "partial",
"details": [
{
"code": "forks",
"params": {
"count": 63
}
}
],
"max_points": 25
},
{
"key": "watchers",
"name": "Watchers",
"detail": "4 watchers",
"points": 2.7,
"status": "partial",
"details": [
{
"code": "watchers",
"params": {
"count": 4
}
}
],
"max_points": 15
}
]
},
{
"key": "community_health",
"band": "moderate",
"name": "Community health",
"note": null,
"notes": [],
"value": 50,
"inputs": {
"has_readme": true,
"has_license": true,
"has_contributing": false,
"has_issue_template": false,
"has_code_of_conduct": false,
"has_pull_request_template": false
},
"components": [
{
"key": "readme",
"name": "README",
"detail": null,
"points": 22.5,
"status": "met",
"details": [],
"max_points": 22.5
},
{
"key": "license",
"name": "License",
"detail": "recognized license (Apache-2.0)",
"points": 22.5,
"status": "met",
"details": [
{
"code": "license_standard",
"params": {}
},
{
"code": "license_spdx",
"params": {
"spdx": "Apache-2.0"
}
}
],
"max_points": 22.5
},
{
"key": "contributing_guide",
"name": "CONTRIBUTING guide",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 18
},
{
"key": "code_of_conduct",
"name": "Code of conduct",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 13.5
},
{
"key": "issue_template",
"name": "Issue template",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.2
},
{
"key": "pr_template",
"name": "PR template",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 6.3
}
]
},
{
"key": "ecosystem_adoption",
"band": "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": [
"triomphe"
],
"dependents": null,
"ecosystems": "crates",
"total_downloads": 81540152,
"monthly_downloads": 4347441
},
"components": [
{
"key": "monthly_downloads",
"name": "Monthly downloads",
"detail": "4,347,441 downloads/month across crates",
"points": 80,
"status": "met",
"details": [
{
"code": "downloads_monthly",
"params": {
"count": 4347441,
"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": "good",
"name": "Sustainability & Governance",
"value": 76,
"weight": 0.24,
"metrics": [
{
"key": "maintainer_resilience",
"band": "moderate",
"name": "Maintainer resilience (bus factor)",
"note": null,
"notes": [],
"value": 61,
"inputs": {
"bus_factor": 2,
"contributors_sampled": 31,
"top_contributor_share": 0.467
},
"components": [
{
"key": "bus_factor",
"name": "Bus factor",
"detail": "2 contributor(s) cover half of all commits",
"points": 25.2,
"status": "partial",
"details": [
{
"code": "bus_factor",
"params": {
"count": 2
}
}
],
"max_points": 54
},
{
"key": "commit_distribution",
"name": "Commit distribution",
"detail": "top contributor authored 47% of commits",
"points": 12,
"status": "partial",
"details": [
{
"code": "top_contributor_share",
"params": {
"share": 47
}
}
],
"max_points": 22.5
},
{
"key": "contributor_breadth",
"name": "Contributor breadth",
"detail": "31 contributors",
"points": 13.5,
"status": "met",
"details": [
{
"code": "contributors_sampled",
"params": {
"count": 31
}
}
],
"max_points": 13.5
},
{
"key": "openssf_scorecard_contributors",
"name": "OpenSSF Scorecard: Contributors",
"detail": "project has 18 contributing companies or organizations",
"points": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
},
{
"key": "responsiveness",
"band": "good",
"name": "Issue & PR responsiveness",
"note": null,
"notes": [],
"value": 78,
"inputs": {
"merged_prs": 83,
"open_issues": 15,
"closed_issues": 31,
"issue_closed_ratio": 0.674,
"closed_unmerged_prs": 6
},
"components": [
{
"key": "issue_resolution",
"name": "Issue resolution",
"detail": "67% of issues closed",
"points": 31.5,
"status": "partial",
"details": [
{
"code": "issues_closed_share",
"params": {
"share": 67
}
}
],
"max_points": 46.75
},
{
"key": "pr_acceptance",
"name": "PR acceptance",
"detail": "83/89 decided PRs merged",
"points": 35.7,
"status": "partial",
"details": [
{
"code": "decided_prs_merged",
"params": {
"merged": 83,
"decided": 89
}
}
],
"max_points": 38.25
},
{
"key": "openssf_scorecard_code_review",
"name": "OpenSSF Scorecard: Code-Review",
"detail": "Found 10/13 approved changesets -- score normalized to 7",
"points": 10.5,
"status": "partial",
"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": 74,
"inputs": {
"followers": 2369,
"owner_type": "User",
"is_verified": null,
"owner_login": "Manishearth",
"public_repos": 433,
"account_age_days": 5229
},
"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": "2,369 followers of Manishearth",
"points": 24.3,
"status": "partial",
"details": [
{
"code": "owner_followers",
"params": {
"count": 2369,
"login": "Manishearth"
}
}
],
"max_points": 25
},
{
"key": "track_record",
"name": "Track record",
"detail": "433 public repos, account ~14 yr old",
"points": 25,
"status": "met",
"details": [
{
"code": "public_repos",
"params": {
"count": 433
}
},
{
"code": "account_age_years",
"params": {
"years": 14
}
}
],
"max_points": 25
}
]
},
{
"key": "package_maintenance",
"band": "excellent",
"name": "Package maintenance",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"packages": [
"triomphe"
],
"ecosystems": "crates",
"any_deprecated": false,
"min_days_since_publish": 32
},
"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 32 days ago",
"points": 35,
"status": "met",
"details": [
{
"code": "publish_recency",
"params": {
"days": 32
}
}
],
"max_points": 35
},
{
"key": "version_history",
"name": "Version history",
"detail": "17 published versions",
"points": 20,
"status": "met",
"details": [
{
"code": "published_versions",
"params": {
"count": 17
}
}
],
"max_points": 20
},
{
"key": "not_deprecated",
"name": "Not deprecated",
"detail": "active, not deprecated or yanked",
"points": 20,
"status": "met",
"details": [
{
"code": "package_not_deprecated",
"params": {}
}
],
"max_points": 20
}
]
}
],
"description": "Will the project survive its people — bus factor, responsiveness, who backs it, and package upkeep?"
},
{
"key": "engineering",
"band": "at_risk",
"name": "Engineering Quality",
"value": 48,
"weight": 0.2,
"metrics": [
{
"key": "engineering_practices",
"band": "at_risk",
"name": "Engineering practices",
"note": null,
"notes": [],
"value": 46,
"inputs": {
"has_ci": true,
"has_tests": false,
"has_editorconfig": true,
"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": 6.4,
"status": "met",
"details": [],
"max_points": 6.4
},
{
"key": "openssf_scorecard_ci_tests",
"name": "OpenSSF Scorecard: CI-Tests",
"detail": "9 out of 11 merged PRs checked by a CI test -- score normalized to 8",
"points": 16,
"status": "partial",
"details": [],
"max_points": 20
}
]
},
{
"key": "documentation",
"band": "moderate",
"name": "Documentation",
"note": null,
"notes": [],
"value": 50,
"inputs": {
"topics": [],
"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": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
},
{
"key": "wiki",
"name": "Wiki",
"detail": null,
"points": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
}
],
"description": "Are baseline engineering and documentation practices in place?"
},
{
"key": "security",
"band": "moderate",
"name": "Security",
"value": 57,
"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": 46,
"inputs": {
"source": "openssf_scorecard",
"checks_evaluated": 16,
"scorecard_version": "v5.5.0",
"checks_inconclusive": 2,
"scorecard_aggregate": 4.6
},
"components": [
{
"key": "binary_artifacts",
"name": "Binary-Artifacts",
"detail": "no binaries found in the repo",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
},
{
"key": "branch_protection",
"name": "Branch-Protection",
"detail": "branch protection not enabled on development/release branches",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "ci_tests",
"name": "CI-Tests",
"detail": "9 out of 11 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 10/13 approved changesets -- score normalized to 7",
"points": 5.2,
"status": "partial",
"details": [],
"max_points": 7.5
},
{
"key": "contributors",
"name": "Contributors",
"detail": "project has 18 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": "7 commit(s) and 2 issue activity found in the last 90 days -- score normalized to 7",
"points": 5.2,
"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": "0 existing vulnerabilities detected",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
}
]
},
{
"key": "dependency_advisories",
"band": "excellent",
"name": "Dependency advisories",
"note": "Excluded from scoring (no data or not applicable): No advisories left outstanding. Remaining weights renormalized. Matched the crates:triomphe@0.1.16 runtime dependency closure — what installing the published package pulls in — 11 packages. Reachability is not analyzed.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"no_advisories_left_outstanding"
]
}
},
{
"code": "weights_renormalized",
"params": {}
},
{
"code": "advisories_scope_published",
"params": {
"package": "crates:triomphe@0.1.16",
"assessed": 11
}
},
{
"code": "advisories_reachability",
"params": {}
}
],
"value": 100,
"inputs": {
"source": "osv",
"advisories": 0,
"affected_packages": 0,
"assessed_packages": 11,
"unassessed_packages": 0,
"affected_by_severity": "none",
"direct_affected_packages": 0
},
"components": [
{
"key": "direct_dependencies_free_of_known_advisories",
"name": "Direct dependencies free of known advisories",
"detail": "no direct dependency carries a known advisory",
"points": 35,
"status": "met",
"details": [
{
"code": "no_direct_advisories",
"params": {}
}
],
"max_points": 35
},
{
"key": "indirect_dependencies_free_of_known_advisories",
"name": "Indirect dependencies free of known advisories",
"detail": "no indirect dependency carries a known advisory",
"points": 25,
"status": "met",
"details": [
{
"code": "no_indirect_advisories",
"params": {}
}
],
"max_points": 25
},
{
"key": "no_advisories_left_outstanding",
"name": "No advisories left outstanding",
"detail": "no advisory carries a publication date",
"points": 0,
"status": "excluded",
"details": [
{
"code": "advisories_no_publication_date",
"params": {}
}
],
"max_points": 40
}
]
},
{
"key": "malicious_dependencies",
"band": "excellent",
"name": "Malicious dependencies",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"source": "osv",
"meaning": "reported as a malicious package by the OpenSSF corpus; the remedy is removal or moving off the compromised name, never an upgrade of the same artifact. Versions the registry has since pulled are listed but not scored",
"packages": [],
"red_flag": false,
"assessed_packages": 11,
"malicious_packages": 0,
"direct_malicious_packages": 0,
"withdrawn_malicious_packages": 0,
"installable_malicious_packages": 0
},
"components": [
{
"key": "no_dependency_reported_as_a_malicious_package",
"name": "No dependency reported as a malicious package",
"detail": "no dependency is reported as a malicious package",
"points": 100,
"status": "met",
"details": [
{
"code": "no_malicious_dependencies",
"params": {}
}
],
"max_points": 100
}
]
},
{
"key": "high_risk_jurisdiction_exposure",
"band": "excellent",
"name": "High-Risk Jurisdiction Exposure",
"note": "Only high-confidence self-published location evidence affects this multiplier. Ambiguous matches are review-only; country evidence is not proof of nationality, citizenship, legal registration, malicious intent, or sanctions status.",
"notes": [
{
"code": "jurisdiction_evidence_limits",
"params": {}
}
],
"value": 100,
"inputs": {
"meaning": "self-published location evidence; not nationality or citizenship",
"red_flag": false,
"exposures": [],
"policy_countries": [
"Russia",
"Iran",
"North Korea"
],
"review_only_matches": 0,
"assessed_self_published_locations": 19
},
"components": [
{
"key": "policy_exposure_multiplier",
"name": "Policy exposure multiplier",
"detail": "no confirmed policy-scope location match",
"points": 100,
"status": "met",
"details": [
{
"code": "jurisdiction_no_match",
"params": {}
}
],
"max_points": 100
}
]
}
],
"description": "Are visible security and supply-chain practices strong, with no malicious dependency and no unresolved high-risk jurisdiction exposure?"
},
{
"key": "ai_readiness",
"band": "at_risk",
"name": "AI Readiness",
"value": 37,
"weight": 0,
"metrics": [
{
"key": "ai_agent_context",
"band": "critical",
"name": "Agent context & guidance",
"note": null,
"notes": [],
"value": 24,
"inputs": {
"has_llms_txt": false,
"legible_history_share": 0.45,
"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": "45 of 100 human commits state their intent (structured subject or explanatory body)",
"points": 24,
"status": "partial",
"details": [
{
"code": "legible_history",
"params": {
"legible": 45,
"sampled": 100
}
}
],
"max_points": 40
}
]
},
{
"key": "ai_verify_loop",
"band": "critical",
"name": "Verify loop (build / test / typecheck)",
"note": null,
"notes": [],
"value": 24,
"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"
],
"dependency_bot_commit_share": 0
},
"components": [
{
"key": "one_command_bootstrap",
"name": "One-command bootstrap",
"detail": "Cargo.toml (toolchain convention, no task runner)",
"points": 12.6,
"status": "partial",
"details": [
{
"code": "toolchain_convention",
"params": {
"files": "Cargo.toml"
}
}
],
"max_points": 18
},
{
"key": "automated_tests",
"name": "Automated tests",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 22
},
{
"key": "lint_format_config",
"name": "Lint / format config",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 11
},
{
"key": "static_type_checking",
"name": "Static type checking",
"detail": "Rust (statically typed)",
"points": 11,
"status": "met",
"details": [
{
"code": "statically_typed_language",
"params": {
"language": "Rust"
}
}
],
"max_points": 11
},
{
"key": "reproducible_environment",
"name": "Reproducible environment",
"detail": 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": "dependency not pinned by hash detected -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
}
]
},
{
"key": "ai_code_legibility",
"band": "excellent",
"name": "Code legibility for models",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"primary_language": "Rust",
"largest_source_bytes": 49394,
"source_files_sampled": 11,
"oversized_source_files": 0
},
"components": [
{
"key": "type_checkable_code",
"name": "Type-checkable code",
"detail": "Rust (statically typed)",
"points": 45,
"status": "met",
"details": [
{
"code": "statically_typed_language",
"params": {
"language": "Rust"
}
}
],
"max_points": 45
},
{
"key": "manageable_file_sizes",
"name": "Manageable file sizes",
"detail": "0/11 source files over 60KB",
"points": 55,
"status": "met",
"details": [
{
"code": "oversized_source_files",
"params": {
"kb": 60,
"sampled": 11,
"oversized": 0
}
}
],
"max_points": 55
}
]
}
],
"description": "How well is the repo equipped to be developed and maintained with AI coding agents? An independent, experimental badge — weight 0.0, so it is surfaced on its own and does not affect the overall health score."
}
],
"metrics_version": "1.13.0"
},
"warnings": [
"Star history unavailable: GitHub GraphQL error: Resource not accessible by personal access token"
],
"report_type": "repository",
"generated_at": "2026-07-31T14:15:13.986980Z",
"schema_version": "0.27.0",
"badge_url": "https://raw.githubusercontent.com/inspect-software/badges/main/v1/m/Manishearth/triomphe.svg",
"full_name": "Manishearth/triomphe",
"license_state": "standard",
"license_spdx": "Apache-2.0"
}