{"id":19229239,"url":"https://github.com/sleeyax/cronet-binaries","last_synced_at":"2025-04-21T02:32:33.981Z","repository":{"id":209215635,"uuid":"722784325","full_name":"sleeyax/cronet-binaries","owner":"sleeyax","description":"Cross-platform binaries for cronet (Chromium Network Stack)","archived":true,"fork":false,"pushed_at":"2024-01-25T22:09:06.000Z","size":45951,"stargazers_count":15,"open_issues_count":0,"forks_count":12,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-15T13:41:22.301Z","etag":null,"topics":["cronet","naive","naive-proxy"],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/sleeyax.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-11-24T00:17:39.000Z","updated_at":"2025-02-13T16:05:44.000Z","dependencies_parsed_at":"2024-11-09T15:47:13.802Z","dependency_job_id":null,"html_url":"https://github.com/sleeyax/cronet-binaries","commit_stats":null,"previous_names":["sleeyax/cronet-binaries"],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sleeyax%2Fcronet-binaries","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sleeyax%2Fcronet-binaries/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sleeyax%2Fcronet-binaries/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sleeyax%2Fcronet-binaries/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sleeyax","download_url":"https://codeload.github.com/sleeyax/cronet-binaries/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":249986130,"owners_count":21356329,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cronet","naive","naive-proxy"],"created_at":"2024-11-09T15:33:14.753Z","updated_at":"2025-04-21T02:32:28.961Z","avatar_url":"https://github.com/sleeyax.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# cronet-binaries ![build workflow](https://github.com/sleeyax/cronet-binaries/actions/workflows/build.yml/badge.svg)\n\n\u003e :warning: This project is still under construction. Changes may be force pushed so use at your own risk.\n\nPre-built, cross-platform binaries for [cronet](https://chromium.googlesource.com/chromium/src/+/master/components/cronet/README.md) (Chromium's networking stack). New cronet binaries will be published to [releases](https://github.com/sleeyax/cronet-binaries/releases) as soon as new stable versions of Chromium are released.\n\nThis repository is based on [NaiveProxy](https://github.com/klzgrad/naiveproxy)'s excellent build system, but doesn't include any Naive binaries, tests or go files. The last release of Naive that came with standalone cronet binaries was [v106.0.5249.91-3](https://github.com/klzgrad/naiveproxy/releases/tag/v106.0.5249.91-3) (Nov 2, 2022). Since then, new builds have been [discontinued](https://github.com/klzgrad/naiveproxy/issues/471#issuecomment-1457323770) so this project aims to fill that gap.\n\n## Applied patches\nPatches are applied to the Chromium source code to make it compile on all supported platforms and support additional features. The following noteworthy patches are applied:\n\n- Minimize source code and build size\n- Disable exceptions and RTTI, except on Mac and Android.\n- Support [OpenWrt](https://openwrt.org/) builds\n- Use the builtin verifier instead of the system verifier (drop dependency of NSS on Linux) and read the system trust store (following Go's behavior in `crypto/x509/root_unix.go` and `crypto/x509/root_linux.go`):\n- Handle AIA response in PKCS#7 format\n- Allow higher socket limits for proxies\n- Force tunneling for all sockets\n- Support HTTP/2 and HTTP/3 CONNECT tunnel Fast Open using the fastopen header\n- Pad RST_STREAM frames\n- Disable Android JNI\n- Use fixed proxy resolution from experimental option proxy_server\n\nGenerally, we try to apply [changes from Naive](https://github.com/klzgrad/naiveproxy#changes-from-upstream) that are still relevant and don't break the build. If you have any suggestions, please open an issue.\n\n## Related projects\n- [klzgrad/NaiveProxy](https://github.com/klzgrad/naiveproxy) Proxy that uses cronet to camouflage traffic.\n- [sleeyax/cronet-go](https://github.com/sleeyax/cronet-go) Go bindings for cronet. This is a fork and continuation of Naive's [sagernet/cronet-go](https://github.com/sagernet/cronet-go).\n- [sleeyax/cronet-rs](https://github.com/sleeyax/cronet-rs) Rust bindings for cronet.\n- [sleeyax/CronetSharp](https://github.com/sleeyax/CronetSharp) C# bindings for cronet.\n\n## Developers\n### Local development\nTo build cronet locally using [docker](https://www.docker.com/), you can use a combination of [act](https://github.com/nektos/act) and [act-cache-server](https://github.com/sp-ricard-valverde/github-act-cache-server).\n\n```bash\n$ act --env ACTIONS_CACHE_URL=http://localhost:\u003cPORT\u003e/ --env ACTIONS_RUNTIME_URL=http://localhost:\u003cPORT\u003e/ --env ACTIONS_RUNTIME_TOKEN=\u003cTOKEN\u003e --job linux\n```\n\nReplace `\u003cPORT\u003e` and `\u003cTOKEN\u003e` with the port and token you configured for your local `act-cache-server` instance. Using a cache server is optional, but will speed up the build process significantly.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsleeyax%2Fcronet-binaries","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsleeyax%2Fcronet-binaries","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsleeyax%2Fcronet-binaries/lists"}