{"id":17223125,"url":"https://github.com/daboross/pb-async","last_synced_at":"2025-07-28T14:31:28.900Z","repository":{"id":57653665,"uuid":"137875906","full_name":"daboross/pb-async","owner":"daboross","description":"Asynchronous PushBullet client for Rust","archived":false,"fork":false,"pushed_at":"2024-02-20T16:00:13.000Z","size":12,"stargazers_count":0,"open_issues_count":1,"forks_count":3,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-06-16T02:59:28.933Z","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/daboross.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","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":"2018-06-19T10:23:01.000Z","updated_at":"2025-04-09T19:29:21.000Z","dependencies_parsed_at":"2024-12-03T12:52:45.536Z","dependency_job_id":null,"html_url":"https://github.com/daboross/pb-async","commit_stats":{"total_commits":5,"total_committers":1,"mean_commits":5.0,"dds":0.0,"last_synced_commit":"5d87a48d0db38ee01787bd5a74a94deee2319d9c"},"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/daboross/pb-async","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/daboross%2Fpb-async","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/daboross%2Fpb-async/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/daboross%2Fpb-async/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/daboross%2Fpb-async/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/daboross","download_url":"https://codeload.github.com/daboross/pb-async/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/daboross%2Fpb-async/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265864727,"owners_count":23840909,"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":[],"created_at":"2024-10-15T04:07:26.741Z","updated_at":"2025-07-28T14:31:28.558Z","avatar_url":"https://github.com/daboross.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"pb-async\n========\n[![Linux Build Status][travis-image]][travis-builds]\n[![Windows Build Status][appveyor-image]][appveyor-builds]\n\n[![crates.io version badge][cratesio-badge]][pb-async-crate]\n\nAsynchronous [Rust] PushBullet client.\n\nNot official nor associated with PushBullet in any way.\n\n---\n\n`pb-async` provides a Futures interface to the [PushBullet v2 API].\n\nUses [`hyper`] and [`native-tls`] to make connections.\n\n```rust\nlet token = std::env::var(\"PUSHBULLET_TOKEN\")?;\n\nlet client = pb_async::Client::new(\u0026token).unwrap();\n\ntokio::run(\n    client.push(\n        pb_async::PushTarget::SelfUser {},\n        pb_async::PushData::Note {\n            title: \"\",\n            body: \"Hello, user!\",\n        },\n    ).or_else(|error| {\n        eprintln!(\"{}\", error);\n        Ok(())\n    })\n);\n```\n\n- [documentation][pb-async-docs]\n- [crates.io page][pb-async-crate]\n\n### API Completion\n\nImplemented:\n- authentication via user auth token\n- list-devices: listing user devices\n- create-push: creating a new push\n- upload-request: uploading and pushing files\n- get-user: retrieving user information\n\nNot Implemented:\n- retrieving tokens for other users via OAuth\n- detailed device information in list-devices\n- push management APIs\n- device management APIs\n- chat APIs\n- subscription APIs\n\n### Maintenance Status\n\n`pb-async` is a hobby library. I intend to maintain the project and update for any future versions of `tokio`, `hyper` and the PushBullet API.\n\nI will not, however, be implementing new features. Pull Requests will be appreciated, reviewed and accepted, but I have no other plans to further this library.\n\n### Contributing\n\nContributions are welcome.\n\nSee [CONTRIBUTING](./CONTRIBUTING.md) for more information.\n\n[Rust]: https://www.rust-lang.org/\n[PushBullet v2 API]: https://docs.pushbullet.com\n[`hyper`]: https://crates.io/crates/hyper\n[`native-tls`]: https://crates.io/crates/native-tls\n[travis-image]: https://travis-ci.org/daboross/pb-async.svg?branch=master\n[travis-builds]: https://travis-ci.org/daboross/pb-async\n[appveyor-image]: https://ci.appveyor.com/api/projects/status/ofdv9657k88jbpel/branch/master?svg=true\n[appveyor-image]: https://ci.appveyor.com/api/projects/status/github/daboross/pb-async?branch=master\u0026svg=true\n[appveyor-builds]: https://ci.appveyor.com/project/daboross/pb-async\n[cratesio-badge]: http://meritbadge.herokuapp.com/pb-async\n[pb-async-docs]: https://docs.rs/pb-async/\n[pb-async-crate]: https://crates.io/crates/pb-async\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdaboross%2Fpb-async","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdaboross%2Fpb-async","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdaboross%2Fpb-async/lists"}