{"id":51043505,"url":"https://github.com/lodev09/neotorrent","last_synced_at":"2026-06-22T12:01:21.919Z","repository":{"id":359405686,"uuid":"1245720816","full_name":"lodev09/neotorrent","owner":"lodev09","description":"Simple native torrent client for macOS. Inspired by WebTorrent desktop.","archived":false,"fork":false,"pushed_at":"2026-05-21T21:59:50.000Z","size":94,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-22T03:10:44.303Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/lodev09.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-05-21T13:45:12.000Z","updated_at":"2026-05-21T21:59:54.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/lodev09/neotorrent","commit_stats":null,"previous_names":["lodev09/neotorrent"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/lodev09/neotorrent","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lodev09%2Fneotorrent","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lodev09%2Fneotorrent/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lodev09%2Fneotorrent/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lodev09%2Fneotorrent/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lodev09","download_url":"https://codeload.github.com/lodev09/neotorrent/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lodev09%2Fneotorrent/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34647750,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-22T02:00:06.391Z","response_time":106,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":[],"created_at":"2026-06-22T12:01:20.787Z","updated_at":"2026-06-22T12:01:21.914Z","avatar_url":"https://github.com/lodev09.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# NeoTorrent\n\nNative macOS torrent client. SwiftUI on top of a Rust core. Apple Silicon only.\n\nBuilt as a replacement for WebTorrent Desktop — no Electron, no Node, native\neverything.\n\n## Features\n\n- Add torrents via magnet URI, `.torrent` file, drag-and-drop, or paste\n- Card-based torrent list with inline file picker and progress\n- Duplicate magnet detection (no accidental re-adds)\n- Pause / resume / remove (with optional file deletion)\n- Per-file selection (skip files you don't want)\n- Resumes torrents on app launch\n- Session-wide bandwidth limits (live-updatable)\n- Customizable download folder\n- macOS default handler for `magnet:` links and `.torrent` files\n- Completion notifications + action/chime sound effects (toggleable)\n\n## Architecture\n\n```\nSwiftUI app  ──UniFFI──\u003e  Rust core\n                          ├── librqbit  (TCP/uTP/HTTP/UDP trackers, DHT,\n                          │              piece picker, disk I/O, streaming\n                          │              HTTP API)\n                          └── neotorrent-core/{tracker,peer,wire,extension,\n                              engine}  (WSS tracker + WebRTC peer transport\n                              + BT wire protocol + ut_metadata — built from\n                              scratch, currently parallel to librqbit)\n```\n\n- `crates/neotorrent-core` — engine, librqbit wrapper, custom WebRTC stack\n- `crates/neotorrent-ffi` — UniFFI exports (`NeoTorrentSession`, `parseMagnet`, …)\n- `apps/NeoTorrent` — SwiftUI app (XcodeGen-managed project)\n\nThe WebRTC modules (`peer.rs`, `tracker.rs`, `wire.rs`, `extension.rs`,\n`engine.rs`) are end-to-end working against real WebTorrent peers but not yet\nwired into the librqbit-backed download path. They're kept in tree for a future\nhybrid client that also speaks WebRTC.\n\n## Contributing\n\nBuild, layout, tests, and release workflow are documented in\n[CONTRIBUTING.md](CONTRIBUTING.md).\n\n## Built on\n\n- [librqbit](https://github.com/ikatson/rqbit) — pure-Rust BitTorrent client\n- [webrtc-rs](https://github.com/webrtc-rs/webrtc) — pure-Rust WebRTC\n- [UniFFI](https://github.com/mozilla/uniffi-rs) — Rust ↔ Swift bridge\n\n## Inspiration\n\nHeavily inspired by [WebTorrent Desktop](https://github.com/webtorrent/webtorrent-desktop)\n— same drag-a-magnet-and-go UX, but rebuilt as a native macOS app. Goals that\ndrove the rewrite:\n\n- Drop Electron/Node — ship a single Apple-Silicon binary instead of a 200 MB\n  Chromium bundle\n- Use the modern Rust BitTorrent stack (`librqbit`) for the wire protocol\n- Keep WebTorrent-flavored WebRTC peer support on the roadmap (the\n  `neotorrent-core` crates already speak it end-to-end against real WebTorrent\n  peers)\n\n## License\n\n[MIT](LICENSE)\n\n---\n\nMade with ❤️ by [@lodev09](http://linkedin.com/in/lodev09/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flodev09%2Fneotorrent","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flodev09%2Fneotorrent","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flodev09%2Fneotorrent/lists"}