Raw JSON report machine-readable
{
"data": {
"repo": {
"topics": [],
"is_fork": false,
"size_kb": 540,
"has_wiki": true,
"homepage": null,
"languages": {
"Rust": 94890
},
"pushed_at": "2026-08-03T03:22:22Z",
"created_at": "2023-05-31T06:57:12Z",
"owner_type": "Organization",
"updated_at": "2026-07-27T03:40:55Z",
"description": "Async TLS for the Tokio runtime",
"is_archived": false,
"is_disabled": false,
"license_spdx": "Apache-2.0",
"default_branch": "main",
"license_spdx_raw": "Apache-2.0",
"primary_language": "Rust",
"significant_languages": [
"Rust"
]
},
"owner": {
"blog": null,
"name": null,
"type": "Organization",
"login": "rustls",
"company": null,
"location": null,
"followers": 192,
"avatar_url": "https://avatars.githubusercontent.com/u/65125397?v=4",
"created_at": "2020-05-10T15:55:35Z",
"is_verified": null,
"public_repos": 27,
"account_age_days": 2275
},
"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": "v/0.26.4",
"kind": "other",
"published_at": "2025-09-26T15:32:04Z"
},
{
"tag": "v/0.26.3",
"kind": "other",
"published_at": "2025-09-17T12:59:00Z"
},
{
"tag": "v/0.26.1",
"kind": "other",
"published_at": "2025-09-17T09:34:45Z"
},
{
"tag": "v/0.26.2",
"kind": "other",
"published_at": "2025-09-17T10:26:33Z"
},
{
"tag": "v/0.26.0",
"kind": "other",
"published_at": "2024-03-22T09:42:38Z"
}
],
"recent_commits": [
{
"oid": "e25578ed978f660d90c4ee53f64a8ad6071acca1",
"body": "Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.53.0 to 1.53.1.\n- [Release notes](https://github.com/tokio-rs/tokio/releases)\n- [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.53.0...tokio-1.53.1)\n\n---\nupdated-dependencies:\n- dependency-name: tokio\n dependency-version: 1.53.1\n dependency-type: direct:production\n update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>",
"is_bot": true,
"headline": "build(deps): bump tokio from 1.53.0 to 1.53.1",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-07-27T03:40:38Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d2a6d9896428c41deacb8a24c91e6778626183f3",
"body": null,
"is_bot": false,
"headline": "server: add rustdoc hinting towards timeout wrapping",
"author_name": "Daniel McCarney",
"author_login": "cpu",
"committed_at": "2026-07-20T14:10:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c2e9b4a4a8981306d7cd45ec57321399ca08bcb0",
"body": null,
"is_bot": false,
"headline": "client: add rustdoc hinting towards timeout wrapping",
"author_name": "Daniel McCarney",
"author_login": "cpu",
"committed_at": "2026-07-20T14:10:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f2b62ff53a8039028dfc789ccffdaadaf0722d6e",
"body": "Demonstrates using tokio-rustls to accept & handle a client request\n(both directly, and lazily), while applying timeouts to the TLS\nhandshake, individual reads/writes on the established stream, and the\ngraceful TLS shutdown (close_notify).\n\nIn the lazy path a single Instant deadline (via timeout_at) spans both\nthe wait for the ClientHello and the rest of the handshake, and\ntake_io() is used to answer a stalled client in plaintext.",
"is_bot": false,
"headline": "examples: add timeouts to server",
"author_name": "Daniel McCarney",
"author_login": "cpu",
"committed_at": "2026-07-20T14:10:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a3ed3fbcef6475df4c1a3749d59737949e15a457",
"body": "Adds a -l/--lazy flag that performs the TLS handshake with\nLazyConfigAcceptor instead of TlsAcceptor, demonstrating access to the\nClientHello (e.g. for SNI-based config selection) before completing the\nhandshake with a chosen ServerConfig.",
"is_bot": false,
"headline": "examples: add lazy acceptor path to server",
"author_name": "Daniel McCarney",
"author_login": "cpu",
"committed_at": "2026-07-20T14:10:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b0bb5bed511421b12b86384b5728b9b99ab38b5d",
"body": "Always echo data read from the client back to it, removing the\n-e/--echo_mode flag and the fixed HTTP 200 response mode. This keeps the\nexample focused on demonstrating tokio-rustls rather than showing two\nways to respond. IMO a fixed HTTP response that doesn't take into account\nany details of the request isn't especially useful.",
"is_bot": false,
"headline": "examples: remove server HTTP response mode",
"author_name": "Daniel McCarney",
"author_login": "cpu",
"committed_at": "2026-07-20T14:10:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8459e6a51afb8e4cc9f94d6b37db34c89d125a0d",
"body": "* Avoid the `rustls::` prefix for `ServerConfig`.\n* Consistently use the `tokio_rustls::rustls` re-export.",
"is_bot": false,
"headline": "examples: tidy server imports",
"author_name": "Daniel McCarney",
"author_login": "cpu",
"committed_at": "2026-07-20T14:10:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9bd7bde7d77215eb74d79c88e64c023ea291dbe1",
"body": null,
"is_bot": false,
"headline": "examples: top-down ordering in server",
"author_name": "Daniel McCarney",
"author_login": "cpu",
"committed_at": "2026-07-20T14:10:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d6def7e95a05f19deda0f18c9325d053e4be80c2",
"body": null,
"is_bot": false,
"headline": "examples: add top-level rustdoc comment for server",
"author_name": "Daniel McCarney",
"author_login": "cpu",
"committed_at": "2026-07-20T14:10:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7fec1f1ebb26c0eb0aa5cba5b46ecb594561d5d0",
"body": "Demonstrates using tokio-rustls and externally applying timeouts to TCP\nconnect, TLS handshake, reads/writes on a TLS stream, and graceful\nshutdown.",
"is_bot": false,
"headline": "examples: add timeouts to client",
"author_name": "Daniel McCarney",
"author_login": "cpu",
"committed_at": "2026-07-20T14:10:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d5bbe5c8069768271c0bcf3549f64ee4514790c8",
"body": "* Avoid the `rustls::` prefix for `RootCertStore` and `ClientConfig`\n* Consistently use the `tokio_rustls::rustls` re-export.",
"is_bot": false,
"headline": "examples: tidy client imports",
"author_name": "Daniel McCarney",
"author_login": "cpu",
"committed_at": "2026-07-20T14:10:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3321244f6ba234a9084074131ae46820e995ee69",
"body": null,
"is_bot": false,
"headline": "examples: remove unnecessary client comment",
"author_name": "Daniel McCarney",
"author_login": "cpu",
"committed_at": "2026-07-20T14:10:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f2e673ad968d6bde2df4f8fc179bd33ea47c8fcd",
"body": null,
"is_bot": false,
"headline": "examples: top-down ordering in client",
"author_name": "Daniel McCarney",
"author_login": "cpu",
"committed_at": "2026-07-20T14:10:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3067bada64e6d5445d4733abd60a5a37753bb392",
"body": null,
"is_bot": false,
"headline": "examples: add top-level rustdoc comment for client",
"author_name": "Daniel McCarney",
"author_login": "cpu",
"committed_at": "2026-07-20T14:10:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "73f0bce48ffa17820fa211ec8e2bccd3f96f7504",
"body": "Bumps [rustls](https://github.com/rustls/rustls) from 0.23.41 to 0.23.42.\n- [Release notes](https://github.com/rustls/rustls/releases)\n- [Changelog](https://github.com/rustls/rustls/blob/main/CHANGELOG.md)\n- [Commits](https://github.com/rustls/rustls/compare/v/0.23.41...v/0.23.42)\n\n---\nupdated-depen\n[…]\nencies:\n- dependency-name: rustls\n dependency-version: 0.23.42\n dependency-type: direct:production\n update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>",
"is_bot": true,
"headline": "build(deps): bump rustls from 0.23.41 to 0.23.42",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-07-20T05:16:59Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "dc05b8e464c72dbae16ee07b862c86afee074982",
"body": "Bumps [futures-util](https://github.com/rust-lang/futures-rs) from 0.3.32 to 0.3.33.\n- [Release notes](https://github.com/rust-lang/futures-rs/releases)\n- [Changelog](https://github.com/rust-lang/futures-rs/blob/main/CHANGELOG.md)\n- [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.32...\n[…]\ns:\n- dependency-name: futures-util\n dependency-version: 0.3.33\n dependency-type: direct:production\n update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>",
"is_bot": true,
"headline": "build(deps): bump futures-util from 0.3.32 to 0.3.33",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-07-20T05:16:36Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "ed02913649fff4e9a92f26c384ab6c55576d0f78",
"body": "Bumps [webpki-roots](https://github.com/rustls/webpki-roots) from 1.0.8 to 1.0.9.\n- [Release notes](https://github.com/rustls/webpki-roots/releases)\n- [Commits](https://github.com/rustls/webpki-roots/compare/v/1.0.8...v/1.0.9)\n\n---\nupdated-dependencies:\n- dependency-name: webpki-roots\n dependency-version: 1.0.9\n dependency-type: direct:production\n update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>",
"is_bot": true,
"headline": "build(deps): bump webpki-roots from 1.0.8 to 1.0.9",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-07-20T05:16:03Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4c21b968b1e8135d864f4bed5473dc60e5d3fc35",
"body": "Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.52.3 to 1.53.0.\n- [Release notes](https://github.com/tokio-rs/tokio/releases)\n- [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.52.3...tokio-1.53.0)\n\n---\nupdated-dependencies:\n- dependency-name: tokio\n dependency-version: 1.53.0\n dependency-type: direct:production\n update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>",
"is_bot": true,
"headline": "build(deps): bump tokio from 1.52.3 to 1.53.0",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-07-20T05:15:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "21449f4c1d9c57bec4cf4ffa7c45ed0cfe90e262",
"body": "Bumps [rustls](https://github.com/rustls/rustls) from 0.23.40 to 0.23.41.\n- [Release notes](https://github.com/rustls/rustls/releases)\n- [Changelog](https://github.com/rustls/rustls/blob/main/CHANGELOG.md)\n- [Commits](https://github.com/rustls/rustls/compare/v/0.23.40...v/0.23.41)\n\n---\nupdated-depen\n[…]\nencies:\n- dependency-name: rustls\n dependency-version: 0.23.41\n dependency-type: direct:production\n update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>",
"is_bot": true,
"headline": "build(deps): bump rustls from 0.23.40 to 0.23.41",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-06-29T05:18:10Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "c1dc3187d730e4370db2a0fb2a5ad4f9fa07bce1",
"body": null,
"is_bot": false,
"headline": "fix(tests): remove unnecessary clones",
"author_name": "Francisco Gouveia",
"author_login": "FranciscoTGouveia",
"committed_at": "2026-06-24T09:20:25Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "40539ab215d0ab3db5b64a6b3358c03fac254841",
"body": "Bumps [webpki-roots](https://github.com/rustls/webpki-roots) from 1.0.7 to 1.0.8.\n- [Release notes](https://github.com/rustls/webpki-roots/releases)\n- [Commits](https://github.com/rustls/webpki-roots/compare/v/1.0.7...v/1.0.8)\n\n---\nupdated-dependencies:\n- dependency-name: webpki-roots\n dependency-version: 1.0.8\n dependency-type: direct:production\n update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>",
"is_bot": true,
"headline": "build(deps): bump webpki-roots from 1.0.7 to 1.0.8",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-06-22T05:31:48Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "50a4d28a48f698d70c76cbcfb4111eec869fa01b",
"body": null,
"is_bot": false,
"headline": "ci: actions/checkout@v6 -> v7",
"author_name": "Daniel McCarney",
"author_login": "cpu",
"committed_at": "2026-06-20T12:06:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8e397fb42886456ce9616c51fa57e570e8b57dfe",
"body": null,
"is_bot": false,
"headline": "ci: split clippy/fmt, use .rustfmt.unstable.toml",
"author_name": "Daniel McCarney",
"author_login": "cpu",
"committed_at": "2026-06-20T12:06:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1c4fdad5adceca9b184434058600bdcfe9653931",
"body": null,
"is_bot": false,
"headline": "reformat with .rustfmt.unstable.toml",
"author_name": "Daniel McCarney",
"author_login": "cpu",
"committed_at": "2026-06-20T12:06:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f4092912c8231dad984917b329d2aeafa87b1405",
"body": null,
"is_bot": false,
"headline": "ci: add cargo-check-external-types",
"author_name": "Daniel McCarney",
"author_login": "cpu",
"committed_at": "2026-06-20T12:06:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c545d2bd681d611892e50ba74bc2ee1059178ad7",
"body": null,
"is_bot": false,
"headline": "ci: add docs job",
"author_name": "Daniel McCarney",
"author_login": "cpu",
"committed_at": "2026-06-20T12:06:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7d7305e281a4975bc20b350cdb27884967928ec7",
"body": null,
"is_bot": false,
"headline": "ci: add cargo-semver-checks-action",
"author_name": "Daniel McCarney",
"author_login": "cpu",
"committed_at": "2026-06-20T12:06:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "50c3a66c3011d637d2b5c581e418be88c2bb03b3",
"body": null,
"is_bot": false,
"headline": "ci: add RUST_BACKTRACE to test job",
"author_name": "Daniel McCarney",
"author_login": "cpu",
"committed_at": "2026-06-20T12:06:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a17f1326cbdf7a7cda430a90385ca0bc56cfb084",
"body": null,
"is_bot": false,
"headline": "ci: explicit read-only permissions",
"author_name": "Daniel McCarney",
"author_login": "cpu",
"committed_at": "2026-06-20T12:06:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "048e9fb7da6392b58e93dcc98eee77be62131ee8",
"body": null,
"is_bot": false,
"headline": "ci: use top-level --deny warnings",
"author_name": "Daniel McCarney",
"author_login": "cpu",
"committed_at": "2026-06-20T12:06:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "052a612b556dd40f714d95d16bffc0bffe8380d8",
"body": "Use the same values as the main rustls repo. This auto-cancels CI when\nyou push updates to the branch.",
"is_bot": false,
"headline": "ci: sync concurrency settings",
"author_name": "Daniel McCarney",
"author_login": "cpu",
"committed_at": "2026-06-20T12:06:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9496779dcddfecb21693c7a76e4768d09d8194b2",
"body": "Arrange all of the 'on' config the same way as in the main rustls repo.",
"is_bot": false,
"headline": "ci: add merge_group, workflow_dispatch",
"author_name": "Daniel McCarney",
"author_login": "cpu",
"committed_at": "2026-06-20T12:06:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "425e9ad989163daf9ca536f42e5f077437a70057",
"body": "Match the new convention we use for the \"ci/\" prefix. Include \"rel-*\"\nand '**' tags.",
"is_bot": false,
"headline": "ci: sync on.push",
"author_name": "Daniel McCarney",
"author_login": "cpu",
"committed_at": "2026-06-20T12:06:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "182345793062971bec711c2d773e75a08767eeeb",
"body": "Bumps [rcgen](https://github.com/rustls/rcgen) from 0.14.7 to 0.14.8.\n- [Release notes](https://github.com/rustls/rcgen/releases)\n- [Commits](https://github.com/rustls/rcgen/compare/v0.14.7...v0.14.8)\n\n---\nupdated-dependencies:\n- dependency-name: rcgen\n dependency-version: 0.14.8\n dependency-type: direct:production\n update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>",
"is_bot": true,
"headline": "build(deps): bump rcgen from 0.14.7 to 0.14.8",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-06-15T05:08:38Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cc1e53588b5a857551d4bbb742564601f143b1b5",
"body": null,
"is_bot": false,
"headline": "Take semver-compatible dependency updates",
"author_name": "Dirkjan Ochtman",
"author_login": "djc",
"committed_at": "2026-06-12T12:06:59Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "da533d25a05b673986f20311f5655c8f24fabce1",
"body": "Signed-off-by: xibeiyoumian <xibeiyoumian@outlook.com>",
"is_bot": false,
"headline": "chore: improve code comments clarity",
"author_name": "xibeiyoumian",
"author_login": "xibeiyoumian",
"committed_at": "2026-05-27T14:18:09Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6f075e0fa61f690ce39793bd1cfae868c62e584b",
"body": "Bumps [rcgen](https://github.com/rustls/rcgen) from 0.14.7 to 0.14.8.\n- [Release notes](https://github.com/rustls/rcgen/releases)\n- [Commits](https://github.com/rustls/rcgen/compare/v0.14.7...v0.14.8)\n\n---\nupdated-dependencies:\n- dependency-name: rcgen\n dependency-version: 0.14.8\n dependency-type: direct:production\n update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>",
"is_bot": true,
"headline": "build(deps): bump rcgen from 0.14.7 to 0.14.8",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-05-18T05:02:55Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "daa5e7f956222d7082c8c76d4cb7c311834e819f",
"body": "Bumps [webpki-roots](https://github.com/rustls/webpki-roots) from 1.0.6 to 1.0.7.\n- [Release notes](https://github.com/rustls/webpki-roots/releases)\n- [Commits](https://github.com/rustls/webpki-roots/compare/v/1.0.6...v/1.0.7)\n\n---\nupdated-dependencies:\n- dependency-name: webpki-roots\n dependency-version: 1.0.7\n dependency-type: direct:production\n update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>",
"is_bot": true,
"headline": "build(deps): bump webpki-roots from 1.0.6 to 1.0.7",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-04-27T05:18:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "853da0345ecd5bb25c36136c2cef9600d3e249f0",
"body": null,
"is_bot": false,
"headline": "Fix running `cargo test --no-default-features`",
"author_name": "Erick Tryzelaar",
"author_login": "erickt",
"committed_at": "2026-02-15T19:13:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e26c931812e50774e18b26381d3bd1e53497975f",
"body": "Bumps [webpki-roots](https://github.com/rustls/webpki-roots) from 1.0.5 to 1.0.6.\n- [Release notes](https://github.com/rustls/webpki-roots/releases)\n- [Commits](https://github.com/rustls/webpki-roots/compare/v/1.0.5...v/1.0.6)\n\n---\nupdated-dependencies:\n- dependency-name: webpki-roots\n dependency-version: 1.0.6\n dependency-type: direct:production\n update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>",
"is_bot": true,
"headline": "build(deps): bump webpki-roots from 1.0.5 to 1.0.6",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-02-09T09:37:50Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8d1c55a4b728b8a539594e6dacd847d160cc3ba0",
"body": "Bumps [rcgen](https://github.com/rustls/rcgen) from 0.14.6 to 0.14.7.\n- [Release notes](https://github.com/rustls/rcgen/releases)\n- [Commits](https://github.com/rustls/rcgen/compare/v0.14.6...v0.14.7)\n\n---\nupdated-dependencies:\n- dependency-name: rcgen\n dependency-version: 0.14.7\n dependency-type: direct:production\n update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>",
"is_bot": true,
"headline": "build(deps): bump rcgen from 0.14.6 to 0.14.7",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-01-26T06:05:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "54ee9173bffc232e37c84d4bbe68b793ce50e12d",
"body": "Bumps [webpki-roots](https://github.com/rustls/webpki-roots) from 1.0.4 to 1.0.5.\n- [Release notes](https://github.com/rustls/webpki-roots/releases)\n- [Commits](https://github.com/rustls/webpki-roots/compare/v/1.0.4...v/1.0.5)\n\n---\nupdated-dependencies:\n- dependency-name: webpki-roots\n dependency-version: 1.0.5\n dependency-type: direct:production\n update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>",
"is_bot": true,
"headline": "build(deps): bump webpki-roots from 1.0.4 to 1.0.5",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-01-05T05:45:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b1c0ca420c8b0c117fd25d5f2a51d11fd8ace35a",
"body": "Bumps [rcgen](https://github.com/rustls/rcgen) from 0.14.5 to 0.14.6.\n- [Release notes](https://github.com/rustls/rcgen/releases)\n- [Commits](https://github.com/rustls/rcgen/compare/v0.14.5...v0.14.6)\n\n---\nupdated-dependencies:\n- dependency-name: rcgen\n dependency-version: 0.14.6\n dependency-type: direct:production\n update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>",
"is_bot": true,
"headline": "build(deps): bump rcgen from 0.14.5 to 0.14.6",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2025-12-15T06:43:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8eaec82499bd2433d801e194d9bd49193bf94b26",
"body": "Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6.\n- [Release notes](https://github.com/actions/checkout/releases)\n- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)\n- [Commits](https://github.com/actions/checkout/compare/v5...v6)\n\n---\nupdated-dependenc\n[…]\n:\n- dependency-name: actions/checkout\n dependency-version: '6'\n dependency-type: direct:production\n update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>",
"is_bot": true,
"headline": "build(deps): bump actions/checkout from 5 to 6",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2025-11-24T06:01:08Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "7ac70c11031df8278f3e493f7991317c7a8a7d2b",
"body": "Bumps [webpki-roots](https://github.com/rustls/webpki-roots) from 1.0.3 to 1.0.4.\n- [Release notes](https://github.com/rustls/webpki-roots/releases)\n- [Commits](https://github.com/rustls/webpki-roots/compare/v/1.0.3...v/1.0.4)\n\n---\nupdated-dependencies:\n- dependency-name: webpki-roots\n dependency-version: 1.0.4\n dependency-type: direct:production\n update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>",
"is_bot": true,
"headline": "build(deps): bump webpki-roots from 1.0.3 to 1.0.4",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2025-11-03T04:30:55Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "24e51b569fadaab1ca2c7b625e692716f2a3cdfd",
"body": "During a dependency review I noticed that tokio-rustls includes bad test\nkeys in the binary pem format in the published packages. These files are\nnot required for building tokio-rustls and make it harder to review the\ncode.\n\nThis commit explicitly excludes these files from the published package.\nBef\n[…]\ncurrent number of 17 million downloads per month\nthat would result in a 118 GB/month traffic reduction for crates.io. For\nme personally the exclusion of the binary files is the more important\noutcome.",
"is_bot": false,
"headline": "Exclude bad test keys from the published package",
"author_name": "Georg Semmler",
"author_login": "weiznich",
"committed_at": "2025-10-14T09:10:01Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "aca765054d2831891cb51f9ac90b6d7ba7267e50",
"body": "Bumps [webpki-roots](https://github.com/rustls/webpki-roots) from 1.0.2 to 1.0.3.\n- [Release notes](https://github.com/rustls/webpki-roots/releases)\n- [Commits](https://github.com/rustls/webpki-roots/compare/v/1.0.2...v/1.0.3)\n\n---\nupdated-dependencies:\n- dependency-name: webpki-roots\n dependency-version: 1.0.3\n dependency-type: direct:production\n update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>",
"is_bot": true,
"headline": "build(deps): bump webpki-roots from 1.0.2 to 1.0.3",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2025-10-13T05:24:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7b85d2159035c59afe73e74cb3af4414c933f2a2",
"body": "Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 5.\n- [Release notes](https://github.com/actions/checkout/releases)\n- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)\n- [Commits](https://github.com/actions/checkout/compare/v3...v5)\n\n---\nupdated-dependenc\n[…]\n:\n- dependency-name: actions/checkout\n dependency-version: '5'\n dependency-type: direct:production\n update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>",
"is_bot": true,
"headline": "build(deps): bump actions/checkout from 3 to 5",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2025-09-29T05:05:14Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "0c14e1496ef50adade4ac7c7d1f0270dfb3cdda5",
"body": null,
"is_bot": false,
"headline": "Bump version to 0.26.4",
"author_name": "Andrei Nesterov",
"author_login": "manifest",
"committed_at": "2025-09-26T13:03:44Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9074308f0902fcaef5043fca931fd08939feee74",
"body": null,
"is_bot": false,
"headline": "Add TLS certificate compression features",
"author_name": "Andrei Nesterov",
"author_login": "manifest",
"committed_at": "2025-09-26T13:03:44Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7ee318d6709ba2a9a1c19218170a3fb942755be0",
"body": "Bumps [seanmiddleditch/gha-setup-ninja](https://github.com/seanmiddleditch/gha-setup-ninja) from 4 to 6.\n- [Release notes](https://github.com/seanmiddleditch/gha-setup-ninja/releases)\n- [Commits](https://github.com/seanmiddleditch/gha-setup-ninja/compare/v4...v6)\n\n---\nupdated-dependencies:\n- depende\n[…]\nname: seanmiddleditch/gha-setup-ninja\n dependency-version: '6'\n dependency-type: direct:production\n update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>",
"is_bot": true,
"headline": "build(deps): bump seanmiddleditch/gha-setup-ninja from 4 to 6",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2025-09-26T12:32:13Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "6f740df49585dad4b36d93c03d7cdac3345919c0",
"body": "Bumps [rcgen](https://github.com/rustls/rcgen) from 0.14.4 to 0.14.5.\n- [Release notes](https://github.com/rustls/rcgen/releases)\n- [Commits](https://github.com/rustls/rcgen/compare/v0.14.4...v0.14.5)\n\n---\nupdated-dependencies:\n- dependency-name: rcgen\n dependency-version: 0.14.5\n dependency-type: direct:production\n update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>",
"is_bot": true,
"headline": "build(deps): bump rcgen from 0.14.4 to 0.14.5",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2025-09-26T12:31:50Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "dc01fcd2b0f7b1fda5843d0cde3579dca7c73820",
"body": "Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 5.\n- [Release notes](https://github.com/actions/checkout/releases)\n- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)\n- [Commits](https://github.com/actions/checkout/compare/v3...v5)\n\n---\nupdated-dependenc\n[…]\n:\n- dependency-name: actions/checkout\n dependency-version: '5'\n dependency-type: direct:production\n update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>",
"is_bot": true,
"headline": "build(deps): bump actions/checkout from 3 to 5",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2025-09-26T12:31:16Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "fb76ce36ffc6f62f8717edbff37291d7143d5852",
"body": null,
"is_bot": false,
"headline": "Add Dependabot configuration",
"author_name": "Dirkjan Ochtman",
"author_login": "djc",
"committed_at": "2025-09-26T12:27:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d5dfa08f122f50d7b93a7e325e7432a1fa449c26",
"body": null,
"is_bot": false,
"headline": "Update semver-compatible dependencies",
"author_name": "Dirkjan Ochtman",
"author_login": "djc",
"committed_at": "2025-09-17T12:56:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d5bb23ccf15f4562ece89c870179ade20730839c",
"body": null,
"is_bot": false,
"headline": "Bump version to 0.26.3",
"author_name": "Dirkjan Ochtman",
"author_login": "djc",
"committed_at": "2025-09-17T12:56:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e0ddd89beda0e9208b83b0487bd30c44ee262831",
"body": null,
"is_bot": false,
"headline": "Fix warning about potentially incomplete writes",
"author_name": "Dirkjan Ochtman",
"author_login": "djc",
"committed_at": "2025-09-17T08:22:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ba767aeb51611107e7cb6aa756f10a2f49e70926",
"body": null,
"is_bot": false,
"headline": "Warn on clippy::use_self",
"author_name": "Dirkjan Ochtman",
"author_login": "djc",
"committed_at": "2025-09-17T08:22:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3b996aa38adeaf3d21e6a2178a924ba6053d1ce3",
"body": null,
"is_bot": false,
"headline": "server: align argument order with fields",
"author_name": "Dirkjan Ochtman",
"author_login": "djc",
"committed_at": "2025-09-17T08:22:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c9778d22a9b564b34f388aaacafb26adc5db8951",
"body": null,
"is_bot": false,
"headline": "server: make StartHandshake fields public",
"author_name": "Dirkjan Ochtman",
"author_login": "djc",
"committed_at": "2025-09-17T08:22:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a58a6e9730b72307da8b9f82b84611573cdf227d",
"body": "This adds two methods to the existing `StartHandshake` in order to\nallow splitting and reconstructing the underlying components.",
"is_bot": false,
"headline": "server: allow splitting and reassembling a `StartHandshake`",
"author_name": "Luca BRUNO",
"author_login": "lucab",
"committed_at": "2025-09-17T06:44:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "97745c349db7408ffbe774025e39a3a2b7272c6e",
"body": null,
"is_bot": false,
"headline": "Move server types into server module",
"author_name": "Dirkjan Ochtman",
"author_login": "djc",
"committed_at": "2025-09-05T11:45:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "78a4ea85b98bc0b64720e6476b212a855d5a15d8",
"body": null,
"is_bot": false,
"headline": "Move Connect and FallibleConnect into client module",
"author_name": "Dirkjan Ochtman",
"author_login": "djc",
"committed_at": "2025-09-05T11:45:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8c2af0c2cd0f6dda976709dd6ac84ee159b6bffe",
"body": null,
"is_bot": false,
"headline": "Move TlsConnector and TlsConnectorWithAlpn into client module",
"author_name": "Dirkjan Ochtman",
"author_login": "djc",
"committed_at": "2025-09-05T11:45:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d3346d3e620db946ff56513da4e77b003fe914a2",
"body": null,
"is_bot": false,
"headline": "Keep TlsAcceptor definition close to impl",
"author_name": "Dirkjan Ochtman",
"author_login": "djc",
"committed_at": "2025-09-05T11:45:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "bf8b55d801a2bc641917b510b47bc78c61df7b7a",
"body": "This auto-derives a `Debug` implementation for `StartHandshake`.",
"is_bot": false,
"headline": "lib: derive `Debug` on `StartHandshake`",
"author_name": "Luca BRUNO",
"author_login": "lucab",
"committed_at": "2025-08-13T14:23:09Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8ce9b650a3751ba25cdd77bdc3d601bb18a9f8c7",
"body": null,
"is_bot": false,
"headline": "Apply suggestions from clippy 1.89",
"author_name": "Dirkjan Ochtman",
"author_login": "djc",
"committed_at": "2025-08-08T16:06:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "73b8a492a29348103c6e034d9b0fd12702caf443",
"body": null,
"is_bot": false,
"headline": "Update semver-compatible dependencies",
"author_name": "Dirkjan Ochtman",
"author_login": "djc",
"committed_at": "2025-07-03T10:14:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7632231e592b026f33eb9afdb8693359dfb98511",
"body": null,
"is_bot": false,
"headline": "Upgrade webpki-roots to 1",
"author_name": "Dirkjan Ochtman",
"author_login": "djc",
"committed_at": "2025-07-03T10:14:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9ac5e523955dc99ff3fdbba5a19febb8c353dd52",
"body": null,
"is_bot": false,
"headline": "Update test certificates",
"author_name": "Dirkjan Ochtman",
"author_login": "djc",
"committed_at": "2025-07-03T10:14:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "61304bc5e27c5858da25b427c48681633c643ee7",
"body": null,
"is_bot": false,
"headline": "Upgrade rcgen to 0.14",
"author_name": "Dirkjan Ochtman",
"author_login": "djc",
"committed_at": "2025-07-03T10:14:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "57f34bab8075632b62f29f53de12c1f2b4be4bf3",
"body": null,
"is_bot": false,
"headline": "feat: add `alpn_protocols` for `TlsConnector::connect_with`",
"author_name": "Yu Li",
"author_login": "yukiiiteru",
"committed_at": "2025-06-30T08:48:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "dd5f27d78c7e48c243e4afc11c3089c5623d84a2",
"body": "* write test to verify that flush does not get resumed\n\n* attempt to persist the need_flush state during handshake",
"is_bot": false,
"headline": "fix: handshake does not fully flush writes (#112)",
"author_name": "Conrad Ludgate",
"author_login": "conradludgate",
"committed_at": "2025-06-06T13:54:50Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6a775e132632340d7f788cf1eba1f618d0d9e7b2",
"body": null,
"is_bot": false,
"headline": "Warn on unreachable_pub",
"author_name": "Dirkjan Ochtman",
"author_login": "djc",
"committed_at": "2025-06-02T11:04:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8092a899759480b86544207c434b58ace3083346",
"body": null,
"is_bot": false,
"headline": "Clarify how to run the example server",
"author_name": "Sameer Sundresh",
"author_login": "sundresh",
"committed_at": "2025-04-09T17:52:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ef4b4d329ddc482202802224776532e3a814544d",
"body": null,
"is_bot": false,
"headline": "Update semver-compatible dependencies",
"author_name": "Dirkjan Ochtman",
"author_login": "djc",
"committed_at": "2025-04-04T12:23:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "10d5790bb06ee73a509b139f17a2c95315f12d75",
"body": null,
"is_bot": false,
"headline": "release 0.26.2 (#104)",
"author_name": "quininer",
"author_login": "quininer",
"committed_at": "2025-03-01T14:01:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2d393fd4384cd82fba49570a613f3e3cce943eff",
"body": null,
"is_bot": false,
"headline": "feat: add access to underlying config (#103)",
"author_name": "Ning Sun",
"author_login": "sunng87",
"committed_at": "2025-02-16T22:24:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "710cf256774bd6d64c350858bdcfb5466691037e",
"body": "* Implement AsyncBufRead for TlsStream types & Stream\r\n\r\n* Implement AsyncRead using AsyncBufRead\r\n\r\n* Reimplement AsyncRead for {server,client}::TlsStream in terms of AsyncBufRead",
"is_bot": false,
"headline": "Implement AsyncBufRead (#100)",
"author_name": "Geoffry Song",
"author_login": "goffrie",
"committed_at": "2025-02-11T08:00:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "276625b7417d0a043951147e059ff1c1576e2a7f",
"body": "The upstream Rustls library updated its MSRV to 1.71 for 0.23.20+",
"is_bot": false,
"headline": "Cargo: MSRV 1.70 -> 1.71",
"author_name": "Daniel McCarney",
"author_login": "cpu",
"committed_at": "2025-02-06T18:03:06Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cd399aba544e01f08047b40a6988365c195d6076",
"body": "We already do this in most of the other Rustls crates, and Zizmor 0.7.0\nflags[0] its absence in this repo.\n\n[0]: https://woodruffw.github.io/zizmor/audits/#artipacked",
"is_bot": false,
"headline": "ci: use persist-credentials: false throughout",
"author_name": "Daniel McCarney",
"author_login": "cpu",
"committed_at": "2024-12-06T18:56:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "93dbdf0a0cec5be58ba24181ae2a9b523ed1be85",
"body": "* When a write returns `Ok(0)`, a `WriteZero` error may be thrown. fix https://github.com/rustls/tokio-rustls/issues/92\r\n* MSRV updated to 1.70",
"is_bot": false,
"headline": "release 0.26.1 (#95)",
"author_name": "quininer",
"author_login": "quininer",
"committed_at": "2024-12-05T17:38:48Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e193e293ff4c8cdcf629daec9d1cc4dbf7b80f11",
"body": null,
"is_bot": false,
"headline": "fix: return write-zero error when write return 0 (#93)",
"author_name": "quininer",
"author_login": "quininer",
"committed_at": "2024-12-04T13:22:42Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "66fb0ae98fbc9e71d5aa855d45e88ca8d53f95f3",
"body": "Applies the result of `clippy --fix`.",
"is_bot": false,
"headline": "proj: fix clippy 1.83 findings",
"author_name": "Daniel McCarney",
"author_login": "cpu",
"committed_at": "2024-11-28T20:15:45Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "409d8742efd3f2b2976623edfe80e0b5dc57769f",
"body": null,
"is_bot": false,
"headline": "Bump MSRV for newer tokio versions",
"author_name": "Dirkjan Ochtman",
"author_login": "djc",
"committed_at": "2024-10-25T13:37:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "52e685dbc8bcf996b62e2283d2784b21ac355630",
"body": null,
"is_bot": false,
"headline": "Use new rustls-pki-types PEM API",
"author_name": "Dirkjan Ochtman",
"author_login": "djc",
"committed_at": "2024-10-25T13:37:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3b2df5022cd0a4fba58ec562d903c9c182351fe5",
"body": null,
"is_bot": false,
"headline": "examples: don't force io::Error from errors",
"author_name": "Dirkjan Ochtman",
"author_login": "djc",
"committed_at": "2024-10-25T13:37:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "20c2bb070d80211b907dc6bc916348338c3c863f",
"body": null,
"is_bot": false,
"headline": "Update semver-compatible dependencies",
"author_name": "Dirkjan Ochtman",
"author_login": "djc",
"committed_at": "2024-10-25T13:37:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "21d2a4fa3275ca5b813ebb4105a2ec9f75b2ddef",
"body": null,
"is_bot": false,
"headline": "Alphabetize dependencies",
"author_name": "Dirkjan Ochtman",
"author_login": "djc",
"committed_at": "2024-10-25T13:37:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9ce0d6b49de466be0cb3d925c26d64b68da9f47d",
"body": null,
"is_bot": false,
"headline": "Drop unnecessary direct rustls-pki-types dependency",
"author_name": "Dirkjan Ochtman",
"author_login": "djc",
"committed_at": "2024-10-25T13:37:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2c7637c75e78f7adc8b6dd6a2b375ac8b4e79ef8",
"body": null,
"is_bot": false,
"headline": "Clean up imports, import ServerName directly",
"author_name": "Dirkjan Ochtman",
"author_login": "djc",
"committed_at": "2024-10-25T13:37:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6f7373dad47df0b071c8f0f1a03376bed08331e7",
"body": "The existing unit tests used vendored cert/key data in a strange way.\nThe `end.cert` and `end.chain` files were the same, and neither was\na chain. In both cases the certificate was self-signed, and that same\ncertificate was also configured as a trust anchor in the client\nconfigurations. No code/scri\n[…]\nest `tests/certs/main.rs` using a new dev-only dep on `rcgen`. This\nfelt like the best option on balance, but we could also create a second\ncrate, or look at the unstable nightly Cargo script feature.",
"is_bot": false,
"headline": "tests: rework vendored certificates/keys",
"author_name": "Daniel McCarney",
"author_login": "cpu",
"committed_at": "2024-07-13T14:06:21Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "7fdd067e04c9033b21bcf094c395c33ed4ad0c49",
"body": "Prefer `rustls_pemfile::private_key()` to `rsa_private_keys()`. The\nformer is more general, and also doesn't require the `next()` dance that\n`rsa_private_keys()` does if you're only interested in one private key.",
"is_bot": false,
"headline": "tests: don't overfit on RSA private keys",
"author_name": "Daniel McCarney",
"author_login": "cpu",
"committed_at": "2024-07-13T14:06:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "16d8970d46d52de41dc4cbd860f56a1bf7a5de9a",
"body": "* Remove the `CHAIN` const and tuple from `TEST_SERVER` - this is\n now encapsulated in the `ClientConfig` that's returned from\n `make_configs()` and no tests are constructing a config from scratch.\n Similarly the domain name is always `\"foobar.com\"` (this is baked into\n the vendored end-entity certificate). Let's just use a const for that.\n* Remove `start_server()` - it's too small to be of much utility. Let's\n just ref the `lazy_static!` directly.",
"is_bot": false,
"headline": "tests: tidy up test server usage",
"author_name": "Daniel McCarney",
"author_login": "cpu",
"committed_at": "2024-07-13T14:06:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "569085194d9d90915e89bbb05ee59b41ea5554a5",
"body": "There's still some improvements left to be made, but this reduces\na great deal of duplication in the test code.",
"is_bot": false,
"headline": "tests: convert more tests to utils::make_configs()",
"author_name": "Daniel McCarney",
"author_login": "cpu",
"committed_at": "2024-07-13T14:06:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c5726b7ef6aaa30fab31203cf45de3e740d275f8",
"body": "Let the callers put the configs into an `Arc`. This will allow re-using\nthe setup logic from `utils::make_configs()` in contexts where\ncustomization of the client or server config is required.",
"is_bot": false,
"headline": "tests: return bare configs from make_configs()",
"author_name": "Daniel McCarney",
"author_login": "cpu",
"committed_at": "2024-07-13T14:06:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "522247586a9aa644b073a1bb0a0580205bd9c990",
"body": "This keeps the tests dir tidy and will make it easier to add an update\nscript that isn't itself an integration test.",
"is_bot": false,
"headline": "tests: move vendored certs to subdir",
"author_name": "Daniel McCarney",
"author_login": "cpu",
"committed_at": "2024-07-13T14:06:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "27285eb9c03370baba2cdea6f97e65bf48d2f4c5",
"body": "This was originally landed in the `tokio-tls` repo to support the\n`tokio-native-tls` crate's smoke tests. It was never used by the Rustls\ncode in that repo, but was carried over anyway when we extracted that\ncode into this repo.\n\nLet's remove it. We can come up with a better solution for the vendored\ntest certificates we are using.",
"is_bot": false,
"headline": "rm unused cert generation script",
"author_name": "Daniel McCarney",
"author_login": "cpu",
"committed_at": "2024-07-13T14:06:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e61858562282844d08e9dc249acc866675a36c98",
"body": "Using `rustls_pemfile::rsa_private_keys` is overly specific, limiting\nuse to just RSA keys with PKCS#1 encoding.\n\nThis commit switches to using `rustls_pemfile::private_key` which is\ntailor made for loading one private key in any of the supported formats.",
"is_bot": false,
"headline": "examples: prefer pemfile::private_key",
"author_name": "Daniel McCarney",
"author_login": "cpu",
"committed_at": "2024-07-09T20:05:27Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "941387af3fa8b0406181d9057871a51a1869df45",
"body": "This is a compromise between running on all pushes vs only running for\nmain/PRs that still allows easy on-demand CI runs while developing.",
"is_bot": false,
"headline": "ci: run on push for _dev branches",
"author_name": "Daniel McCarney",
"author_login": "cpu",
"committed_at": "2024-07-09T19:57:12Z",
"body_truncated": false,
"is_coding_agent": false
}
],
"releases_count": 5,
"commits_last_year": 67,
"latest_release_at": "2025-09-26T15:32:04Z",
"latest_release_tag": "v/0.26.4",
"releases_from_tags": false,
"days_since_last_push": 0,
"active_weeks_last_year": 23,
"days_since_latest_release": 310,
"mean_days_between_releases": 138.3
},
"artifacts": {
"collected": true,
"structure": [
"tree.cargo_lib"
],
"declarations": [
{
"name": "tokio-rustls",
"path": "Cargo.toml",
"tokens": [
"cargo.category:asynchronous",
"cargo.category:cryptography",
"cargo.category:network-programming"
],
"ecosystem": "crates"
}
]
},
"community": {
"has_readme": true,
"has_license": true,
"readme_badges": {
"hosts": [
"github.com",
"shields.io"
],
"total": 4,
"header": 4,
"collected": true,
"has_inspect_badge": false
},
"has_description": true,
"has_contributing": false,
"health_percentage": 50,
"has_issue_template": false,
"has_code_of_conduct": false,
"has_pull_request_template": false
},
"ecosystem": {
"packages": [
{
"name": "tokio-rustls",
"exists": true,
"license": "MIT OR Apache-2.0",
"keywords": [
"asynchronous",
"network-programming",
"cryptography"
],
"ecosystem": "crates",
"categories": [
"asynchronous",
"network-programming",
"cryptography"
],
"matches_repo": true,
"registry_url": "https://crates.io/crates/tokio-rustls",
"declared_type": null,
"is_deprecated": false,
"latest_version": "0.26.4",
"repository_url": "https://github.com/rustls/tokio-rustls",
"versions_count": 78,
"total_downloads": 674354187,
"dependents_count": null,
"deprecation_note": null,
"maintainers_count": null,
"monthly_downloads": 50537280,
"first_published_at": "2017-02-22T05:32:09.546440Z",
"latest_published_at": "2025-09-26T15:31:04.364599Z",
"latest_version_yanked": false,
"days_since_latest_publish": 310
}
]
},
"popularity": {
"forks": 107,
"stars": 232,
"watchers": 11,
"fork_history": {
"days": [
{
"date": "2023-07-08",
"count": 1
},
{
"date": "2023-07-10",
"count": 1
},
{
"date": "2023-07-12",
"count": 1
},
{
"date": "2023-07-25",
"count": 1
},
{
"date": "2023-07-26",
"count": 2
},
{
"date": "2023-08-13",
"count": 1
},
{
"date": "2023-08-22",
"count": 1
},
{
"date": "2023-08-31",
"count": 1
},
{
"date": "2023-09-12",
"count": 1
},
{
"date": "2023-09-18",
"count": 1
},
{
"date": "2023-09-21",
"count": 1
},
{
"date": "2023-10-06",
"count": 1
},
{
"date": "2023-10-15",
"count": 1
},
{
"date": "2023-10-29",
"count": 1
},
{
"date": "2023-11-09",
"count": 2
},
{
"date": "2023-11-30",
"count": 1
},
{
"date": "2023-12-02",
"count": 1
},
{
"date": "2023-12-04",
"count": 2
},
{
"date": "2023-12-12",
"count": 1
},
{
"date": "2023-12-20",
"count": 1
},
{
"date": "2023-12-21",
"count": 1
},
{
"date": "2023-12-23",
"count": 1
},
{
"date": "2024-01-18",
"count": 1
},
{
"date": "2024-01-19",
"count": 1
},
{
"date": "2024-01-26",
"count": 1
},
{
"date": "2024-02-07",
"count": 1
},
{
"date": "2024-02-16",
"count": 1
},
{
"date": "2024-02-19",
"count": 1
},
{
"date": "2024-02-25",
"count": 1
},
{
"date": "2024-03-06",
"count": 1
},
{
"date": "2024-03-11",
"count": 1
},
{
"date": "2024-03-15",
"count": 2
},
{
"date": "2024-04-05",
"count": 1
},
{
"date": "2024-04-08",
"count": 1
},
{
"date": "2024-04-10",
"count": 1
},
{
"date": "2024-04-25",
"count": 1
},
{
"date": "2024-05-20",
"count": 1
},
{
"date": "2024-05-24",
"count": 1
},
{
"date": "2024-05-29",
"count": 1
},
{
"date": "2024-06-26",
"count": 1
},
{
"date": "2024-06-27",
"count": 1
},
{
"date": "2024-07-10",
"count": 1
},
{
"date": "2024-07-12",
"count": 1
},
{
"date": "2024-07-17",
"count": 1
},
{
"date": "2024-07-24",
"count": 1
},
{
"date": "2024-08-05",
"count": 1
},
{
"date": "2024-08-09",
"count": 1
},
{
"date": "2024-08-18",
"count": 1
},
{
"date": "2024-09-02",
"count": 1
},
{
"date": "2024-09-16",
"count": 1
},
{
"date": "2024-09-23",
"count": 1
},
{
"date": "2024-09-24",
"count": 1
},
{
"date": "2024-10-21",
"count": 1
},
{
"date": "2024-12-17",
"count": 1
},
{
"date": "2024-12-18",
"count": 1
},
{
"date": "2024-12-30",
"count": 1
},
{
"date": "2025-01-21",
"count": 1
},
{
"date": "2025-02-16",
"count": 1
},
{
"date": "2025-03-05",
"count": 1
},
{
"date": "2025-03-07",
"count": 1
},
{
"date": "2025-03-17",
"count": 1
},
{
"date": "2025-04-09",
"count": 1
},
{
"date": "2025-05-21",
"count": 1
},
{
"date": "2025-05-27",
"count": 1
},
{
"date": "2025-07-23",
"count": 1
},
{
"date": "2025-07-24",
"count": 1
},
{
"date": "2025-08-05",
"count": 2
},
{
"date": "2025-08-07",
"count": 1
},
{
"date": "2025-08-19",
"count": 1
},
{
"date": "2025-09-03",
"count": 1
},
{
"date": "2025-09-13",
"count": 1
},
{
"date": "2025-09-26",
"count": 1
},
{
"date": "2025-10-03",
"count": 1
},
{
"date": "2025-10-05",
"count": 1
},
{
"date": "2025-10-08",
"count": 1
},
{
"date": "2025-10-14",
"count": 1
},
{
"date": "2025-10-20",
"count": 1
},
{
"date": "2025-11-15",
"count": 1
},
{
"date": "2025-11-21",
"count": 1
},
{
"date": "2025-12-12",
"count": 1
},
{
"date": "2025-12-17",
"count": 1
},
{
"date": "2025-12-22",
"count": 1
},
{
"date": "2026-01-27",
"count": 1
},
{
"date": "2026-02-15",
"count": 1
},
{
"date": "2026-03-20",
"count": 2
},
{
"date": "2026-03-21",
"count": 1
},
{
"date": "2026-06-01",
"count": 1
},
{
"date": "2026-06-08",
"count": 1
},
{
"date": "2026-06-24",
"count": 1
}
],
"complete": true,
"collected": 95,
"total_forks": 107
},
"star_history": null,
"open_issues_and_prs": 24
},
"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"
],
"largest_source_bytes": 17972,
"source_files_sampled": 13,
"oversized_source_files": 0,
"agent_instruction_files": [],
"agent_instruction_max_bytes": null
},
"dependencies": {
"manifests": [
"Cargo.toml"
],
"advisories": {
"error": null,
"scope": "repository_graph",
"source": "osv",
"findings": [
{
"name": "time",
"direct": false,
"version": "0.3.41",
"severity": "moderate",
"ecosystem": "crates",
"cvss_score": null,
"advisory_ids": [
"GHSA-r6v5-fh4h-64xc",
"RUSTSEC-2026-0009"
],
"fixed_version": "0.3.47",
"advisory_count": 2,
"oldest_advisory_days": 178
}
],
"collected": true,
"malicious": [],
"truncated": false,
"by_severity": {
"moderate": 1
},
"advisory_count": 2,
"affected_count": 1,
"assessed_count": 121,
"malicious_count": 0,
"assessed_package": null,
"unassessed_count": 0,
"direct_affected_count": 0
},
"ecosystems": [
"crates"
],
"dependencies": [
{
"name": "rustls",
"manifest": "Cargo.toml",
"ecosystem": "crates",
"version_constraint": "0.23.27"
},
{
"name": "tokio",
"manifest": "Cargo.toml",
"ecosystem": "crates",
"version_constraint": "1.0"
}
],
"all_dependencies": {
"error": null,
"source": "github-sbom",
"packages": [
{
"name": "rustls",
"direct": true,
"version": "0.23.42",
"ecosystem": "crates"
},
{
"name": "tokio",
"direct": true,
"version": "1.53.1",
"ecosystem": "crates"
},
{
"name": "aho-corasick",
"direct": false,
"version": "1.1.4",
"ecosystem": "crates"
},
{
"name": "alloc-no-stdlib",
"direct": false,
"version": "2.0.4",
"ecosystem": "crates"
},
{
"name": "alloc-stdlib",
"direct": false,
"version": "0.2.2",
"ecosystem": "crates"
},
{
"name": "argh",
"direct": false,
"version": "0.1.19",
"ecosystem": "crates"
},
{
"name": "argh_derive",
"direct": false,
"version": "0.1.19",
"ecosystem": "crates"
},
{
"name": "argh_shared",
"direct": false,
"version": "0.1.19",
"ecosystem": "crates"
},
{
"name": "asn1-rs",
"direct": false,
"version": "0.7.2",
"ecosystem": "crates"
},
{
"name": "asn1-rs-derive",
"direct": false,
"version": "0.6.0",
"ecosystem": "crates"
},
{
"name": "asn1-rs-impl",
"direct": false,
"version": "0.2.0",
"ecosystem": "crates"
},
{
"name": "autocfg",
"direct": false,
"version": "1.5.1",
"ecosystem": "crates"
},
{
"name": "aws-lc-fips-sys",
"direct": false,
"version": "0.13.14",
"ecosystem": "crates"
},
{
"name": "aws-lc-rs",
"direct": false,
"version": "1.17.0",
"ecosystem": "crates"
},
{
"name": "aws-lc-sys",
"direct": false,
"version": "0.41.0",
"ecosystem": "crates"
},
{
"name": "base64",
"direct": false,
"version": "0.22.1",
"ecosystem": "crates"
},
{
"name": "bindgen",
"direct": false,
"version": "0.72.1",
"ecosystem": "crates"
},
{
"name": "bit-vec",
"direct": false,
"version": "0.9.1",
"ecosystem": "crates"
},
{
"name": "bitflags",
"direct": false,
"version": "2.13.0",
"ecosystem": "crates"
},
{
"name": "brotli",
"direct": false,
"version": "8.0.3",
"ecosystem": "crates"
},
{
"name": "brotli-decompressor",
"direct": false,
"version": "5.0.1",
"ecosystem": "crates"
},
{
"name": "bytes",
"direct": false,
"version": "1.11.1",
"ecosystem": "crates"
},
{
"name": "cc",
"direct": false,
"version": "1.2.63",
"ecosystem": "crates"
},
{
"name": "cexpr",
"direct": false,
"version": "0.6.0",
"ecosystem": "crates"
},
{
"name": "cfg-if",
"direct": false,
"version": "1.0.4",
"ecosystem": "crates"
},
{
"name": "clang-sys",
"direct": false,
"version": "1.8.1",
"ecosystem": "crates"
},
{
"name": "cmake",
"direct": false,
"version": "0.1.58",
"ecosystem": "crates"
},
{
"name": "data-encoding",
"direct": false,
"version": "2.11.0",
"ecosystem": "crates"
},
{
"name": "der-parser",
"direct": false,
"version": "10.0.0",
"ecosystem": "crates"
},
{
"name": "deranged",
"direct": false,
"version": "0.4.0",
"ecosystem": "crates"
},
{
"name": "displaydoc",
"direct": false,
"version": "0.2.6",
"ecosystem": "crates"
},
{
"name": "dunce",
"direct": false,
"version": "1.0.5",
"ecosystem": "crates"
},
{
"name": "either",
"direct": false,
"version": "1.16.0",
"ecosystem": "crates"
},
{
"name": "errno",
"direct": false,
"version": "0.3.14",
"ecosystem": "crates"
},
{
"name": "find-msvc-tools",
"direct": false,
"version": "0.1.9",
"ecosystem": "crates"
},
{
"name": "fs_extra",
"direct": false,
"version": "1.3.0",
"ecosystem": "crates"
},
{
"name": "futures-core",
"direct": false,
"version": "0.3.33",
"ecosystem": "crates"
},
{
"name": "futures-macro",
"direct": false,
"version": "0.3.33",
"ecosystem": "crates"
},
{
"name": "futures-task",
"direct": false,
"version": "0.3.33",
"ecosystem": "crates"
},
{
"name": "futures-util",
"direct": false,
"version": "0.3.33",
"ecosystem": "crates"
},
{
"name": "getrandom",
"direct": false,
"version": "0.2.17",
"ecosystem": "crates"
},
{
"name": "getrandom",
"direct": false,
"version": "0.3.4",
"ecosystem": "crates"
},
{
"name": "glob",
"direct": false,
"version": "0.3.3",
"ecosystem": "crates"
},
{
"name": "itertools",
"direct": false,
"version": "0.13.0",
"ecosystem": "crates"
},
{
"name": "itoa",
"direct": false,
"version": "1.0.18",
"ecosystem": "crates"
},
{
"name": "jobserver",
"direct": false,
"version": "0.1.34",
"ecosystem": "crates"
},
{
"name": "lazy_static",
"direct": false,
"version": "1.5.0",
"ecosystem": "crates"
},
{
"name": "libc",
"direct": false,
"version": "0.2.186",
"ecosystem": "crates"
},
{
"name": "libloading",
"direct": false,
"version": "0.8.9",
"ecosystem": "crates"
},
{
"name": "lock_api",
"direct": false,
"version": "0.4.14",
"ecosystem": "crates"
},
{
"name": "log",
"direct": false,
"version": "0.4.32",
"ecosystem": "crates"
},
{
"name": "memchr",
"direct": false,
"version": "2.8.2",
"ecosystem": "crates"
},
{
"name": "minimal-lexical",
"direct": false,
"version": "0.2.1",
"ecosystem": "crates"
},
{
"name": "mio",
"direct": false,
"version": "1.2.1",
"ecosystem": "crates"
},
{
"name": "nom",
"direct": false,
"version": "7.1.3",
"ecosystem": "crates"
},
{
"name": "num-bigint",
"direct": false,
"version": "0.4.6",
"ecosystem": "crates"
},
{
"name": "num-conv",
"direct": false,
"version": "0.1.0",
"ecosystem": "crates"
},
{
"name": "num-integer",
"direct": false,
"version": "0.1.46",
"ecosystem": "crates"
},
{
"name": "num-traits",
"direct": false,
"version": "0.2.19",
"ecosystem": "crates"
},
{
"name": "oid-registry",
"direct": false,
"version": "0.8.1",
"ecosystem": "crates"
},
{
"name": "once_cell",
"direct": false,
"version": "1.21.4",
"ecosystem": "crates"
},
{
"name": "parking_lot",
"direct": false,
"version": "0.12.5",
"ecosystem": "crates"
},
{
"name": "parking_lot_core",
"direct": false,
"version": "0.9.12",
"ecosystem": "crates"
},
{
"name": "pem",
"direct": false,
"version": "3.0.6",
"ecosystem": "crates"
},
{
"name": "pin-project-lite",
"direct": false,
"version": "0.2.17",
"ecosystem": "crates"
},
{
"name": "powerfmt",
"direct": false,
"version": "0.2.0",
"ecosystem": "crates"
},
{
"name": "prettyplease",
"direct": false,
"version": "0.2.37",
"ecosystem": "crates"
},
{
"name": "proc-macro2",
"direct": false,
"version": "1.0.106",
"ecosystem": "crates"
},
{
"name": "quote",
"direct": false,
"version": "1.0.45",
"ecosystem": "crates"
},
{
"name": "r-efi",
"direct": false,
"version": "5.3.0",
"ecosystem": "crates"
},
{
"name": "rcgen",
"direct": false,
"version": "0.14.8",
"ecosystem": "crates"
},
{
"name": "redox_syscall",
"direct": false,
"version": "0.5.18",
"ecosystem": "crates"
},
{
"name": "regex",
"direct": false,
"version": "1.12.4",
"ecosystem": "crates"
},
{
"name": "regex-automata",
"direct": false,
"version": "0.4.14",
"ecosystem": "crates"
},
{
"name": "regex-syntax",
"direct": false,
"version": "0.8.11",
"ecosystem": "crates"
},
{
"name": "ring",
"direct": false,
"version": "0.17.14",
"ecosystem": "crates"
},
{
"name": "rustc-hash",
"direct": false,
"version": "2.1.1",
"ecosystem": "crates"
},
{
"name": "rusticata-macros",
"direct": false,
"version": "4.1.0",
"ecosystem": "crates"
},
{
"name": "rustls-pki-types",
"direct": false,
"version": "1.14.1",
"ecosystem": "crates"
},
{
"name": "rustls-webpki",
"direct": false,
"version": "0.103.13",
"ecosystem": "crates"
},
{
"name": "scopeguard",
"direct": false,
"version": "1.2.0",
"ecosystem": "crates"
},
{
"name": "serde",
"direct": false,
"version": "1.0.228",
"ecosystem": "crates"
},
{
"name": "serde_core",
"direct": false,
"version": "1.0.228",
"ecosystem": "crates"
},
{
"name": "serde_derive",
"direct": false,
"version": "1.0.228",
"ecosystem": "crates"
},
{
"name": "shlex",
"direct": false,
"version": "1.3.0",
"ecosystem": "crates"
},
{
"name": "shlex",
"direct": false,
"version": "2.0.1",
"ecosystem": "crates"
},
{
"name": "signal-hook-registry",
"direct": false,
"version": "1.4.8",
"ecosystem": "crates"
},
{
"name": "slab",
"direct": false,
"version": "0.4.12",
"ecosystem": "crates"
},
{
"name": "smallvec",
"direct": false,
"version": "1.15.2",
"ecosystem": "crates"
},
{
"name": "socket2",
"direct": false,
"version": "0.6.4",
"ecosystem": "crates"
},
{
"name": "subtle",
"direct": false,
"version": "2.6.1",
"ecosystem": "crates"
},
{
"name": "syn",
"direct": false,
"version": "2.0.117",
"ecosystem": "crates"
},
{
"name": "synstructure",
"direct": false,
"version": "0.13.2",
"ecosystem": "crates"
},
{
"name": "thiserror",
"direct": false,
"version": "2.0.18",
"ecosystem": "crates"
},
{
"name": "thiserror-impl",
"direct": false,
"version": "2.0.18",
"ecosystem": "crates"
},
{
"name": "time",
"direct": false,
"version": "0.3.41",
"ecosystem": "crates"
},
{
"name": "time-core",
"direct": false,
"version": "0.1.4",
"ecosystem": "crates"
},
{
"name": "time-macros",
"direct": false,
"version": "0.2.22",
"ecosystem": "crates"
},
{
"name": "tokio-macros",
"direct": false,
"version": "2.7.0",
"ecosystem": "crates"
},
{
"name": "unicode-ident",
"direct": false,
"version": "1.0.24",
"ecosystem": "crates"
},
{
"name": "untrusted",
"direct": false,
"version": "0.9.0",
"ecosystem": "crates"
},
{
"name": "wasi",
"direct": false,
"version": "0.11.1+wasi-snapshot-preview1",
"ecosystem": "crates"
},
{
"name": "wasip2",
"direct": false,
"version": "1.0.3+wasi-0.2.9",
"ecosystem": "crates"
},
{
"name": "webpki-roots",
"direct": false,
"version": "1.0.9",
"ecosystem": "crates"
},
{
"name": "windows-link",
"direct": false,
"version": "0.2.1",
"ecosystem": "crates"
},
{
"name": "windows-sys",
"direct": false,
"version": "0.52.0",
"ecosystem": "crates"
},
{
"name": "windows-sys",
"direct": false,
"version": "0.61.2",
"ecosystem": "crates"
},
{
"name": "windows-targets",
"direct": false,
"version": "0.52.6",
"ecosystem": "crates"
},
{
"name": "windows_aarch64_gnullvm",
"direct": false,
"version": "0.52.6",
"ecosystem": "crates"
},
{
"name": "windows_aarch64_msvc",
"direct": false,
"version": "0.52.6",
"ecosystem": "crates"
},
{
"name": "windows_i686_gnu",
"direct": false,
"version": "0.52.6",
"ecosystem": "crates"
},
{
"name": "windows_i686_gnullvm",
"direct": false,
"version": "0.52.6",
"ecosystem": "crates"
},
{
"name": "windows_i686_msvc",
"direct": false,
"version": "0.52.6",
"ecosystem": "crates"
},
{
"name": "windows_x86_64_gnu",
"direct": false,
"version": "0.52.6",
"ecosystem": "crates"
},
{
"name": "windows_x86_64_gnullvm",
"direct": false,
"version": "0.52.6",
"ecosystem": "crates"
},
{
"name": "windows_x86_64_msvc",
"direct": false,
"version": "0.52.6",
"ecosystem": "crates"
},
{
"name": "wit-bindgen",
"direct": false,
"version": "0.57.1",
"ecosystem": "crates"
},
{
"name": "x509-parser",
"direct": false,
"version": "0.18.1",
"ecosystem": "crates"
},
{
"name": "yasna",
"direct": false,
"version": "0.6.0",
"ecosystem": "crates"
},
{
"name": "zeroize",
"direct": false,
"version": "1.8.2",
"ecosystem": "crates"
},
{
"name": "zlib-rs",
"direct": false,
"version": "0.6.3",
"ecosystem": "crates"
}
],
"collected": true,
"truncated": false,
"total_count": 121,
"direct_count": 2,
"indirect_count": 119
}
},
"maintainership": {
"issues": {
"open_prs": 8,
"merged_prs": 92,
"open_issues": 16,
"closed_ratio": 0.714,
"closed_issues": 40,
"closed_unmerged_prs": 37
},
"bus_factor": 2,
"bot_contributors": 1,
"top_contributors": [
{
"type": "User",
"login": "quininer",
"commits": 179,
"avatar_url": "https://avatars.githubusercontent.com/u/6286761?v=4"
},
{
"type": "User",
"login": "djc",
"commits": 60,
"avatar_url": "https://avatars.githubusercontent.com/u/158471?v=4"
},
{
"type": "User",
"login": "cpu",
"commits": 44,
"avatar_url": "https://avatars.githubusercontent.com/u/292650?v=4"
},
{
"type": "User",
"login": "briansmith",
"commits": 10,
"avatar_url": "https://avatars.githubusercontent.com/u/16816?v=4"
},
{
"type": "User",
"login": "ctz",
"commits": 8,
"avatar_url": "https://avatars.githubusercontent.com/u/579363?v=4"
},
{
"type": "User",
"login": "LucioFranco",
"commits": 8,
"avatar_url": "https://avatars.githubusercontent.com/u/5758045?v=4"
},
{
"type": "User",
"login": "jbr",
"commits": 6,
"avatar_url": "https://avatars.githubusercontent.com/u/13301?v=4"
},
{
"type": "User",
"login": "tottoto",
"commits": 3,
"avatar_url": "https://avatars.githubusercontent.com/u/16907501?v=4"
},
{
"type": "User",
"login": "nickelc",
"commits": 3,
"avatar_url": "https://avatars.githubusercontent.com/u/2128532?v=4"
},
{
"type": "User",
"login": "yanzhai-cf",
"commits": 3,
"avatar_url": "https://avatars.githubusercontent.com/u/265094967?v=4"
}
],
"contributors_sampled": 61,
"top_contributor_share": 0.46
},
"quality_signals": {
"has_ci": true,
"has_tests": true,
"ci_workflows": [
"CI.yml"
],
"has_docs_dir": false,
"linter_configs": [],
"has_editorconfig": false,
"has_linter_config": false,
"has_precommit_config": false
},
"security_signals": {
"lockfiles": [
"Cargo.lock"
],
"scorecard": {
"checks": [
{
"name": "Binary-Artifacts",
"score": 10,
"reason": "no binaries found in the repo",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#binary-artifacts"
},
{
"name": "Branch-Protection",
"score": null,
"reason": "internal error: error during branchesHandler.setup: internal error: some github tokens can't read classic branch protection rules: https://github.com/ossf/scorecard-action/blob/main/docs/authentication/fine-grained-auth-token.md",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#branch-protection"
},
{
"name": "CI-Tests",
"score": 10,
"reason": "10 out of 10 merged PRs checked by a CI test -- score normalized to 10",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#ci-tests"
},
{
"name": "CII-Best-Practices",
"score": 0,
"reason": "no effort to earn an OpenSSF best practices badge detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#cii-best-practices"
},
{
"name": "Code-Review",
"score": 10,
"reason": "all changesets reviewed",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#code-review"
},
{
"name": "Contributors",
"score": 10,
"reason": "project has 24 contributing companies or organizations",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#contributors"
},
{
"name": "Dangerous-Workflow",
"score": 10,
"reason": "no dangerous workflow patterns detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#dangerous-workflow"
},
{
"name": "Dependency-Update-Tool",
"score": 10,
"reason": "update tool detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#dependency-update-tool"
},
{
"name": "Fuzzing",
"score": 0,
"reason": "project is not fuzzed",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#fuzzing"
},
{
"name": "License",
"score": 10,
"reason": "license file detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#license"
},
{
"name": "Maintained",
"score": 10,
"reason": "30 commit(s) and 2 issue activity found in the last 90 days -- score normalized to 10",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#maintained"
},
{
"name": "Packaging",
"score": null,
"reason": "packaging workflow not detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#packaging"
},
{
"name": "Pinned-Dependencies",
"score": 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": 10,
"reason": "GitHub workflow tokens follow principle of least privilege",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#token-permissions"
},
{
"name": "Vulnerabilities",
"score": 9,
"reason": "1 existing vulnerabilities detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#vulnerabilities"
}
],
"commit": "e25578ed978f660d90c4ee53f64a8ad6071acca1",
"ran_at": "2026-08-03T04:00:41Z",
"aggregate_score": 7.3,
"scorecard_version": "v5.5.0"
},
"has_codeql_workflow": false,
"has_security_policy": false,
"has_dependabot_config": true
},
"contribution_flow": {
"collected": true,
"recent_prs": {
"merged_7d": 0,
"decided_7d": 0,
"merged_30d": 1,
"authors_30d": 2,
"decided_30d": 3,
"sample_size": 60,
"window_days": 30,
"sample_exhausted": false,
"authors_probed_30d": 2,
"newcomer_merged_30d": 0,
"bot_prs_excluded_30d": 5,
"newcomer_authors_30d": 1,
"newcomer_decided_30d": 1
},
"ci_last_run_at": "2026-08-03T03:22:28Z",
"oldest_open_prs": [
{
"number": 73,
"created_at": "2024-05-21T00:17:27Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 99,
"created_at": "2024-12-30T15:54:56Z",
"last_comment_at": "2025-01-13T16:49:35Z",
"last_comment_author": "jlizen"
},
{
"number": 118,
"created_at": "2025-08-05T16:33:45Z",
"last_comment_at": "2025-08-05T17:18:12Z",
"last_comment_author": "cpu"
},
{
"number": 119,
"created_at": "2025-08-06T07:27:25Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 147,
"created_at": "2025-11-21T08:55:11Z",
"last_comment_at": "2025-11-21T17:00:14Z",
"last_comment_author": "howardjohn"
},
{
"number": 179,
"created_at": "2026-06-09T03:56:25Z",
"last_comment_at": "2026-06-09T12:41:07Z",
"last_comment_author": "djc"
},
{
"number": 193,
"created_at": "2026-08-03T03:13:52Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 194,
"created_at": "2026-08-03T03:22:23Z",
"last_comment_at": null,
"last_comment_author": null
}
],
"last_merged_pr_at": "2026-07-27T03:40:39Z",
"ci_last_conclusion": "SUCCESS",
"oldest_open_issues": [
{
"number": 6,
"created_at": "2023-07-24T16:56:10Z",
"last_comment_at": "2023-07-27T10:49:29Z",
"last_comment_author": "mediocregopher"
},
{
"number": 8,
"created_at": "2023-08-01T07:56:36Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 18,
"created_at": "2023-09-11T15:24:45Z",
"last_comment_at": "2024-01-22T21:20:56Z",
"last_comment_author": "djc"
},
{
"number": 54,
"created_at": "2024-03-12T03:48:16Z",
"last_comment_at": "2024-04-02T10:51:54Z",
"last_comment_author": "c92s"
},
{
"number": 58,
"created_at": "2024-03-19T22:51:49Z",
"last_comment_at": "2024-03-20T01:59:23Z",
"last_comment_author": "quininer"
},
{
"number": 60,
"created_at": "2024-04-05T16:43:33Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 61,
"created_at": "2024-04-05T16:54:07Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 64,
"created_at": "2024-04-12T11:06:22Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 70,
"created_at": "2024-04-27T16:43:50Z",
"last_comment_at": "2024-11-07T03:46:25Z",
"last_comment_author": "quininer"
},
{
"number": 84,
"created_at": "2024-09-16T15:50:30Z",
"last_comment_at": "2025-01-30T15:45:47Z",
"last_comment_author": "miaomiao1992"
},
{
"number": 94,
"created_at": "2024-12-03T23:24:29Z",
"last_comment_at": "2024-12-06T17:52:38Z",
"last_comment_author": "jlizen"
},
{
"number": 97,
"created_at": "2024-12-08T06:00:47Z",
"last_comment_at": "2024-12-13T12:27:39Z",
"last_comment_author": "djc"
},
{
"number": 114,
"created_at": "2025-06-13T12:02:36Z",
"last_comment_at": "2025-06-17T21:32:29Z",
"last_comment_author": "happytrudy"
},
{
"number": 138,
"created_at": "2025-10-07T09:55:38Z",
"last_comment_at": "2025-10-09T10:13:53Z",
"last_comment_author": "djc"
},
{
"number": 146,
"created_at": "2025-11-21T00:44:36Z",
"last_comment_at": "2025-11-21T16:56:01Z",
"last_comment_author": "howardjohn"
},
{
"number": 163,
"created_at": "2026-03-04T05:23:17Z",
"last_comment_at": "2026-03-04T11:13:23Z",
"last_comment_author": "djc"
}
]
}
},
"config": {
"disabled_metrics": [],
"disabled_categories": [],
"disabled_components": {}
},
"source": {
"url": "https://github.com/rustls/tokio-rustls",
"host": "github.com",
"name": "tokio-rustls",
"owner": "rustls"
},
"metrics": {
"overall": {
"key": "overall",
"band": "excellent",
"name": "Overall health",
"note": "The weighted overall 69 is calibrated to 81 on the published index scale (record calibration 2026-08-02).",
"notes": [
{
"code": "overall_calibration",
"params": {
"raw": 69,
"calibrated": 81,
"calibration": "2026-08-02"
}
}
],
"value": 81,
"inputs": {
"security": 78,
"vitality": 72,
"community": 67,
"governance": 70,
"calibration": "2026-08-02",
"engineering": 61,
"ai_readiness": 57,
"weighted_overall_raw": 69
},
"components": []
},
"categories": [
{
"key": "vitality",
"band": "good",
"name": "Vitality",
"value": 72,
"weight": 0.21,
"metrics": [
{
"key": "development_activity",
"band": "good",
"name": "Development activity",
"note": null,
"notes": [],
"value": 78,
"inputs": {
"commits_last_year": 67,
"human_commit_share": 0.79,
"days_since_last_push": 0,
"active_weeks_last_year": 23
},
"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": "23/52 weeks with commits",
"points": 15.9,
"status": "partial",
"details": [
{
"code": "commit_cadence_weeks",
"params": {
"weeks": 23
}
}
],
"max_points": 36
},
{
"key": "commit_volume",
"name": "Commit volume",
"detail": "67 commits in the last year",
"points": 16.5,
"status": "partial",
"details": [
{
"code": "commits_last_year",
"params": {
"count": 67
}
}
],
"max_points": 18
},
{
"key": "openssf_scorecard_maintained",
"name": "OpenSSF Scorecard: Maintained",
"detail": "30 commit(s) and 2 issue activity found in the last 90 days -- score normalized to 10",
"points": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
},
{
"key": "release_discipline",
"band": "moderate",
"name": "Release discipline",
"note": "Excluded from scoring (no data or not applicable): OpenSSF Scorecard: Signed-Releases. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"openssf_scorecard_signed_releases"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 62,
"inputs": {
"releases_count": 5,
"latest_release_tag": "v/0.26.4",
"releases_from_tags": false,
"days_since_latest_release": 310,
"mean_days_between_releases": 138.3
},
"components": [
{
"key": "ships_releases",
"name": "Ships releases",
"detail": "5 releases published",
"points": 27,
"status": "met",
"details": [
{
"code": "releases_published",
"params": {
"count": 5
}
}
],
"max_points": 27
},
{
"key": "release_recency",
"name": "Release recency",
"detail": "latest release 310 days ago",
"points": 16.2,
"status": "partial",
"details": [
{
"code": "release_recency",
"params": {
"days": 310
}
}
],
"max_points": 36
},
{
"key": "release_cadence",
"name": "Release cadence",
"detail": "a release every ~138.3 days",
"points": 12.6,
"status": "partial",
"details": [
{
"code": "release_cadence",
"params": {
"gap": 138.3
}
}
],
"max_points": 27
},
{
"key": "openssf_scorecard_signed_releases",
"name": "OpenSSF Scorecard: Signed-Releases",
"detail": "no releases found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 10
}
]
},
{
"key": "abandonment",
"band": "exceptional",
"name": "Abandonment",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"cap": null,
"state": "maintained",
"guards": [],
"signals": [],
"red_flag": false,
"multiplier_pct": 100,
"declared_reason": null,
"unverified_reason": null,
"unanswered_open_prs": null,
"unanswered_open_issues": null,
"days_since_last_merged_pr": null,
"days_since_last_human_commit": 13,
"days_since_last_human_commit_is_floor": false
},
"components": [
{
"key": "project_is_still_maintained",
"name": "Project is still maintained",
"detail": "last human commit 13 days ago",
"points": 100,
"status": "met",
"details": [
{
"code": "abandonment_maintained",
"params": {
"days": 13
}
}
],
"max_points": 100
}
]
}
],
"description": "Is the project alive — is code being written and are releases shipping?"
},
{
"key": "community",
"band": "good",
"name": "Community & Adoption",
"value": 67,
"weight": 0.17,
"metrics": [
{
"key": "popularity",
"band": "moderate",
"name": "Popularity & adoption",
"note": null,
"notes": [],
"value": 61,
"inputs": {
"forks": 107,
"stars": 232,
"watchers": 11,
"growth_state": "unverified",
"growth_factor_pct": 100,
"growth_unverified_reason": "no_history"
},
"components": [
{
"key": "stars",
"name": "Stars",
"detail": "232 stars",
"points": 38.3,
"status": "partial",
"details": [
{
"code": "stars",
"params": {
"count": 232
}
}
],
"max_points": 60
},
{
"key": "forks",
"name": "Forks",
"detail": "107 forks",
"points": 16.9,
"status": "partial",
"details": [
{
"code": "forks",
"params": {
"count": 107
}
}
],
"max_points": 25
},
{
"key": "watchers",
"name": "Watchers",
"detail": "11 watchers",
"points": 5.6,
"status": "partial",
"details": [
{
"code": "watchers",
"params": {
"count": 11
}
}
],
"max_points": 15
}
]
},
{
"key": "community_health",
"band": "moderate",
"name": "Community health",
"note": null,
"notes": [],
"value": 50,
"inputs": {
"has_readme": true,
"has_license": true,
"readme_badges": 4,
"has_contributing": false,
"has_issue_template": false,
"has_code_of_conduct": false,
"readme_badge_services": [
"github.com",
"shields.io"
],
"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": "exceptional",
"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": [
"tokio-rustls"
],
"dependents": null,
"ecosystems": "crates",
"total_downloads": 674354187,
"monthly_downloads": 50537280
},
"components": [
{
"key": "monthly_downloads",
"name": "Monthly downloads",
"detail": "50,537,280 downloads/month across crates",
"points": 80,
"status": "met",
"details": [
{
"code": "downloads_monthly",
"params": {
"count": 50537280,
"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": 70,
"weight": 0.23,
"metrics": [
{
"key": "maintainer_resilience",
"band": "moderate",
"name": "Maintainer resilience (bus factor)",
"note": null,
"notes": [],
"value": 61,
"inputs": {
"bus_factor": 2,
"contributors_sampled": 61,
"top_contributor_share": 0.46
},
"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 46% of commits",
"points": 12.2,
"status": "partial",
"details": [
{
"code": "top_contributor_share",
"params": {
"share": 46
}
}
],
"max_points": 22.5
},
{
"key": "contributor_breadth",
"name": "Contributor breadth",
"detail": "61 contributors",
"points": 13.5,
"status": "met",
"details": [
{
"code": "contributors_sampled",
"params": {
"count": 61
}
}
],
"max_points": 13.5
},
{
"key": "openssf_scorecard_contributors",
"name": "OpenSSF Scorecard: Contributors",
"detail": "project has 24 contributing companies or organizations",
"points": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
},
{
"key": "responsiveness",
"band": "good",
"name": "Issue & PR responsiveness",
"note": null,
"notes": [],
"value": 66,
"inputs": {
"merged_prs": 92,
"open_issues": 16,
"closed_issues": 40,
"prs_merged_7d": 0,
"prs_decided_7d": 0,
"prs_merged_30d": 1,
"prs_decided_30d": 3,
"issue_closed_ratio": 0.714,
"closed_unmerged_prs": 37,
"first_time_authors_30d": 1,
"first_time_prs_merged_30d": 0,
"first_time_prs_decided_30d": 1
},
"components": [
{
"key": "issue_resolution",
"name": "Issue resolution",
"detail": "71% of issues closed",
"points": 30,
"status": "partial",
"details": [
{
"code": "issues_closed_share",
"params": {
"share": 71
}
}
],
"max_points": 42
},
{
"key": "pr_acceptance",
"name": "PR acceptance",
"detail": "92/129 decided PRs merged",
"points": 21.4,
"status": "partial",
"details": [
{
"code": "decided_prs_merged",
"params": {
"merged": 92,
"decided": 129
}
}
],
"max_points": 30
},
{
"key": "newcomer_pr_acceptance",
"name": "Newcomer PR acceptance",
"detail": "0/1 first-time contributors' PRs merged in 30d",
"points": 0,
"status": "missed",
"details": [
{
"code": "newcomer_prs_merged",
"params": {
"days": 30,
"merged": 0,
"decided": 1
}
}
],
"max_points": 13
},
{
"key": "openssf_scorecard_code_review",
"name": "OpenSSF Scorecard: Code-Review",
"detail": "all changesets reviewed",
"points": 15,
"status": "met",
"details": [],
"max_points": 15
}
]
},
{
"key": "stewardship",
"band": "good",
"name": "Ownership & stewardship",
"note": null,
"notes": [],
"value": 69,
"inputs": {
"followers": 192,
"owner_type": "Organization",
"is_verified": null,
"owner_login": "rustls",
"public_repos": 27,
"account_age_days": 2275
},
"components": [
{
"key": "ownership_backing",
"name": "Ownership backing",
"detail": "organization-owned",
"points": 30,
"status": "met",
"details": [
{
"code": "owner_organization",
"params": {}
}
],
"max_points": 30
},
{
"key": "verified_domain",
"name": "Verified domain",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 20
},
{
"key": "owner_reach",
"name": "Owner reach",
"detail": "192 followers of rustls",
"points": 16.4,
"status": "partial",
"details": [
{
"code": "owner_followers",
"params": {
"count": 192,
"login": "rustls"
}
}
],
"max_points": 25
},
{
"key": "track_record",
"name": "Track record",
"detail": "27 public repos, account ~6 yr old",
"points": 22.5,
"status": "partial",
"details": [
{
"code": "public_repos",
"params": {
"count": 27
}
},
{
"code": "account_age_years",
"params": {
"years": 6
}
}
],
"max_points": 25
}
]
},
{
"key": "package_maintenance",
"band": "excellent",
"name": "Package maintenance",
"note": null,
"notes": [],
"value": 91,
"inputs": {
"packages": [
"tokio-rustls"
],
"ecosystems": "crates",
"any_deprecated": false,
"min_days_since_publish": 310
},
"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 310 days ago",
"points": 26,
"status": "partial",
"details": [
{
"code": "publish_recency",
"params": {
"days": 310
}
}
],
"max_points": 35
},
{
"key": "version_history",
"name": "Version history",
"detail": "78 published versions",
"points": 20,
"status": "met",
"details": [
{
"code": "published_versions",
"params": {
"count": 78
}
}
],
"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": 61,
"weight": 0.19,
"metrics": [
{
"key": "engineering_practices",
"band": "good",
"name": "Engineering practices",
"note": null,
"notes": [],
"value": 68,
"inputs": {
"has_ci": true,
"has_tests": true,
"has_editorconfig": false,
"has_linter_config": false,
"has_precommit_config": false
},
"components": [
{
"key": "ci_workflows",
"name": "CI workflows",
"detail": "1 workflow(s)",
"points": 24,
"status": "met",
"details": [
{
"code": "ci_workflows",
"params": {
"count": 1
}
}
],
"max_points": 24
},
{
"key": "tests_present",
"name": "Tests present",
"detail": null,
"points": 24,
"status": "met",
"details": [],
"max_points": 24
},
{
"key": "linter_config",
"name": "Linter config",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 16
},
{
"key": "pre_commit_hooks",
"name": "Pre-commit hooks",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 9.6
},
{
"key": "editorconfig",
"name": ".editorconfig",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 6.4
},
{
"key": "openssf_scorecard_ci_tests",
"name": "OpenSSF Scorecard: CI-Tests",
"detail": "10 out of 10 merged PRs checked by a CI test -- score normalized to 10",
"points": 20,
"status": "met",
"details": [],
"max_points": 20
}
]
},
{
"key": "documentation",
"band": "moderate",
"name": "Documentation",
"note": null,
"notes": [],
"value": 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": "good",
"name": "Security",
"value": 78,
"weight": 0.16,
"metrics": [
{
"key": "security_posture",
"band": "good",
"name": "Security posture",
"note": "Excluded from scoring (no data or not applicable): Branch-Protection, Packaging, Signed-Releases. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"branch_protection",
"packaging",
"signed_releases"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 73,
"inputs": {
"source": "openssf_scorecard",
"checks_evaluated": 15,
"scorecard_version": "v5.5.0",
"checks_inconclusive": 3,
"scorecard_aggregate": 7.3
},
"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": "internal error: error during branchesHandler.setup: internal error: some github tokens can't read classic branch protection rules: https://github.com/ossf/scorecard-action/blob/main/docs/authentication/fine-grained-auth-token.md",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 7.5
},
{
"key": "ci_tests",
"name": "CI-Tests",
"detail": "10 out of 10 merged PRs checked by a CI test -- score normalized to 10",
"points": 2.5,
"status": "met",
"details": [],
"max_points": 2.5
},
{
"key": "cii_best_practices",
"name": "CII-Best-Practices",
"detail": "no effort to earn an OpenSSF best practices badge detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 2.5
},
{
"key": "code_review",
"name": "Code-Review",
"detail": "all changesets reviewed",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
},
{
"key": "contributors",
"name": "Contributors",
"detail": "project has 24 contributing companies or organizations",
"points": 2.5,
"status": "met",
"details": [],
"max_points": 2.5
},
{
"key": "dangerous_workflow",
"name": "Dangerous-Workflow",
"detail": "no dangerous workflow patterns detected",
"points": 10,
"status": "met",
"details": [],
"max_points": 10
},
{
"key": "dependency_update_tool",
"name": "Dependency-Update-Tool",
"detail": "update tool detected",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
},
{
"key": "fuzzing",
"name": "Fuzzing",
"detail": "project is not fuzzed",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "license",
"name": "License",
"detail": "license file detected",
"points": 2.5,
"status": "met",
"details": [],
"max_points": 2.5
},
{
"key": "maintained",
"name": "Maintained",
"detail": "30 commit(s) and 2 issue activity found in the last 90 days -- score normalized to 10",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
},
{
"key": "packaging",
"name": "Packaging",
"detail": "packaging workflow not detected",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 5
},
{
"key": "pinned_dependencies",
"name": "Pinned-Dependencies",
"detail": "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": "GitHub workflow tokens follow principle of least privilege",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
},
{
"key": "vulnerabilities",
"name": "Vulnerabilities",
"detail": "1 existing vulnerabilities detected",
"points": 6.8,
"status": "partial",
"details": [],
"max_points": 7.5
}
]
},
{
"key": "dependency_advisories",
"band": "exceptional",
"name": "Dependency advisories",
"note": "Excluded from scoring (no data or not applicable): Indirect dependencies free of known advisories, No advisories left outstanding. Remaining weights renormalized. Matched 121 resolved dependencies against OSV. This repository publishes no package the index resolves, so the repository dependency graph was assessed instead. That graph mixes development and test pins with shipped dependencies, so only the declared runtime dependencies are scored; transitive findings are reported as context and excluded from the score. Reachability is not analyzed.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"indirect_dependencies_free_of_known_advisories",
"no_advisories_left_outstanding"
]
}
},
{
"code": "weights_renormalized",
"params": {}
},
{
"code": "advisories_scope_repository",
"params": {
"assessed": 121
}
},
{
"code": "advisories_repo_graph_caveat",
"params": {}
},
{
"code": "advisories_reachability",
"params": {}
}
],
"value": 100,
"inputs": {
"source": "osv",
"advisories": 2,
"affected_packages": 1,
"assessed_packages": 121,
"unassessed_packages": 0,
"affected_by_severity": "moderate 1",
"direct_affected_packages": 0
},
"components": [
{
"key": "direct_dependencies_free_of_known_advisories",
"name": "Direct dependencies free of known advisories",
"detail": "no direct dependency carries a known advisory",
"points": 35,
"status": "met",
"details": [
{
"code": "no_direct_advisories",
"params": {}
}
],
"max_points": 35
},
{
"key": "indirect_dependencies_free_of_known_advisories",
"name": "Indirect dependencies free of known advisories",
"detail": "transitive set not separable from development and test dependencies in this scope",
"points": 0,
"status": "excluded",
"details": [
{
"code": "advisories_scope_not_separable",
"params": {}
}
],
"max_points": 25
},
{
"key": "no_advisories_left_outstanding",
"name": "No advisories left outstanding",
"detail": "no advisory carries a publication date",
"points": 0,
"status": "excluded",
"details": [
{
"code": "advisories_no_publication_date",
"params": {}
}
],
"max_points": 40
}
]
},
{
"key": "malicious_dependencies",
"band": "exceptional",
"name": "Malicious dependencies",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"source": "osv",
"meaning": "reported as a malicious package by the OpenSSF corpus; the remedy is removal or moving off the compromised name, never an upgrade of the same artifact. Versions the registry has since pulled are listed but not scored",
"packages": [],
"red_flag": false,
"assessed_packages": 121,
"malicious_packages": 0,
"direct_malicious_packages": 0,
"withdrawn_malicious_packages": 0,
"installable_malicious_packages": 0
},
"components": [
{
"key": "no_dependency_reported_as_a_malicious_package",
"name": "No dependency reported as a malicious package",
"detail": "no dependency is reported as a malicious package",
"points": 100,
"status": "met",
"details": [
{
"code": "no_malicious_dependencies",
"params": {}
}
],
"max_points": 100
}
]
},
{
"key": "high_risk_jurisdiction_exposure",
"band": "exceptional",
"name": "High-Risk Jurisdiction Exposure",
"note": "Only high-confidence self-published location evidence affects this multiplier. Ambiguous matches are review-only; country evidence is not proof of nationality, citizenship, legal registration, malicious intent, or sanctions status.",
"notes": [
{
"code": "jurisdiction_evidence_limits",
"params": {}
}
],
"value": 100,
"inputs": {
"meaning": "self-published location evidence; not nationality or citizenship",
"red_flag": false,
"exposures": [],
"policy_countries": [
"Russia",
"Iran",
"North Korea"
],
"commit_weight_rule": {
"min_commits": 50,
"min_commit_share": 0.1
},
"review_only_matches": 0,
"below_threshold_exposures": [],
"assessed_self_published_locations": 9
},
"components": [
{
"key": "policy_exposure_multiplier",
"name": "Policy exposure multiplier",
"detail": "no confirmed policy-scope location match",
"points": 100,
"status": "met",
"details": [
{
"code": "jurisdiction_no_match",
"params": {}
}
],
"max_points": 100
}
]
}
],
"description": "Are visible security and supply-chain practices strong, with no malicious dependency and no unresolved high-risk jurisdiction exposure?"
},
{
"key": "ai_readiness",
"band": "moderate",
"name": "AI Readiness",
"value": 57,
"weight": 0.04,
"metrics": [
{
"key": "ai_agent_context",
"band": "at_risk",
"name": "Agent context & guidance",
"note": null,
"notes": [],
"value": 34,
"inputs": {
"has_llms_txt": false,
"legible_history_share": 0.633,
"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": "50 of 79 human commits state their intent (structured subject or explanatory body)",
"points": 33.8,
"status": "partial",
"details": [
{
"code": "legible_history",
"params": {
"legible": 50,
"sampled": 79
}
}
],
"max_points": 40
}
]
},
{
"key": "ai_verify_loop",
"band": "moderate",
"name": "Verify loop (build / test / typecheck)",
"note": null,
"notes": [],
"value": 64,
"inputs": {
"has_nix": false,
"has_tests": true,
"lockfiles": [
"Cargo.lock"
],
"has_dockerfile": false,
"typed_language": true,
"bootstrap_files": [],
"has_devcontainer": false,
"has_linter_config": false,
"typecheck_configs": [],
"agent_commit_share": 0,
"toolchain_manifests": [
"Cargo.toml"
],
"dependency_bot_commit_share": 0.21
},
"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": 22,
"status": "met",
"details": [],
"max_points": 22
},
{
"key": "lint_format_config",
"name": "Lint / format config",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 11
},
{
"key": "static_type_checking",
"name": "Static type checking",
"detail": "Rust (statically typed)",
"points": 11,
"status": "met",
"details": [
{
"code": "statically_typed_language",
"params": {
"language": "Rust"
}
}
],
"max_points": 11
},
{
"key": "reproducible_environment",
"name": "Reproducible environment",
"detail": "lockfile",
"points": 10,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "lockfile"
}
}
],
"max_points": 10
},
{
"key": "demonstrated_agent_practice",
"name": "Demonstrated agent practice",
"detail": "no agent-authored commits among the last 100",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_agent_authored_commits",
"params": {
"sampled": 100
}
}
],
"max_points": 10
},
{
"key": "automated_maintenance",
"name": "Automated maintenance",
"detail": "21 of the last 100 commits are automated dependency updates",
"points": 8,
"status": "met",
"details": [
{
"code": "dependency_bot_commits",
"params": {
"count": 21,
"sampled": 100
}
}
],
"max_points": 8
},
{
"key": "openssf_scorecard_pinned_dependencies",
"name": "OpenSSF Scorecard: Pinned-Dependencies",
"detail": "dependency not pinned by hash detected -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
}
]
},
{
"key": "ai_code_legibility",
"band": "exceptional",
"name": "Code legibility for models",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"primary_language": "Rust",
"largest_source_bytes": 17972,
"source_files_sampled": 13,
"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/13 source files over 60KB",
"points": 55,
"status": "met",
"details": [
{
"code": "oversized_source_files",
"params": {
"kb": 60,
"sampled": 13,
"oversized": 0
}
}
],
"max_points": 55
}
]
},
{
"key": "ai_interfaces",
"band": "weak",
"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? Carries a deliberately small weight: agent tooling is a real maintenance signal, but its absence must never gate the top of the scale (calibration saturates at raw 91, so 100/100 remains reachable with AI Readiness at zero)."
}
],
"classification": {
"labels": [
"library"
],
"scores": {
"library": 9
},
"primary": "library",
"evidence": [
{
"tier": "distribution",
"label": "library",
"source": "registry:crates",
"weight": 6
},
{
"tier": "structure",
"label": "library",
"source": "tree.cargo_lib",
"weight": 3
}
],
"artifacts": [
{
"path": "Cargo.toml",
"labels": [],
"ecosystem": "crates"
}
],
"confidence": "medium",
"host_extension": false,
"runs_as_process": false,
"consumed_by_code": true
},
"metrics_version": "2.3.1"
},
"warnings": [
"Star history unavailable: GitHub GraphQL error: Resource not accessible by personal access token"
],
"report_type": "repository",
"generated_at": "2026-08-03T04:01:06.581838Z",
"schema_version": "0.30.0",
"badge_url": "https://raw.githubusercontent.com/inspect-software/badges/main/v1/r/rustls/tokio-rustls.svg",
"full_name": "rustls/tokio-rustls",
"license_state": "standard",
"license_spdx": "Apache-2.0"
}