{"id":37128421,"url":"https://github.com/taigrr/libusb","last_synced_at":"2026-01-14T14:56:58.020Z","repository":{"id":57707411,"uuid":"501105173","full_name":"taigrr/libusb","owner":"taigrr","description":"Go bindings for the C libusb library.","archived":false,"fork":true,"pushed_at":"2022-06-08T04:56:08.000Z","size":1806,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2024-06-21T09:43:27.773Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"gotmc/libusb","license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/taigrr.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-06-08T04:55:40.000Z","updated_at":"2022-06-02T09:08:25.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/taigrr/libusb","commit_stats":null,"previous_names":[],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/taigrr/libusb","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taigrr%2Flibusb","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taigrr%2Flibusb/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taigrr%2Flibusb/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taigrr%2Flibusb/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/taigrr","download_url":"https://codeload.github.com/taigrr/libusb/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taigrr%2Flibusb/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28424025,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T13:30:50.153Z","status":"ssl_error","status_checked_at":"2026-01-14T13:29:08.907Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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-01-14T14:56:57.396Z","updated_at":"2026-01-14T14:56:58.011Z","avatar_url":"https://github.com/taigrr.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# libusb\n\nGo bindings for the [libusb C library][libusb-c].\n\n[![GoDoc][godoc image]][godoc link]\n[![Go Report Card][report badge]][report card]\n[![Build Status][travis image]][travis link]\n[![License Badge][license image]][LICENSE.txt]\n\n# Installation\n\n```bash\n$ go get github.com/gotmc/libusb\n```\n\n## Installing C libusb library\n\nTo use [libusb][] package, you'll need to install the [libusb C\nlibrary][libusb-c] first.\n\n### OS X\n\n```bash\n$ brew install libusb\n```\n\n### Windows\n\nDownload and install the latest Windows libusb binaries from\n[libusb.info][libusb-c].\n\n### Linux\n\n```bash\n$ sudo apt-get install -y libusb-dev libusb-1.0-0-dev\n```\n\n# Documentation\n\nDocumentation can be found at either:\n\n- \u003chttps://godoc.org/github.com/gotmc/libusb\u003e\n- \u003chttp://localhost:6060/pkg/github.com/gotmc/libusb/\u003e after running `$\n  godoc -http=:6060`\n\n# Contributing\n\n[libusb][] is developed using [Scott Chacon][]'s [GitHub Flow][]. To\ncontribute, fork [libusb][], create a feature branch, and then\nsubmit a [pull request][].  [GitHub Flow][] is summarized as:\n\n- Anything in the `master` branch is deployable\n- To work on something new, create a descriptively named branch off of\n  `master` (e.g., `new-oauth2-scopes`)\n- Commit to that branch locally and regularly push your work to the same\n  named branch on the server\n- When you need feedback or help, or you think the branch is ready for\n  merging, open a [pull request][].\n- After someone else has reviewed and signed off on the feature, you can\n  merge it into master.\n- Once it is merged and pushed to `master`, you can and *should* deploy\n  immediately.\n\n# Testing\n\nPrior to submitting a [pull request][], please run:\n\n```bash\n$ gofmt\n$ golint\n$ go vet\n$ go test\n```\n\nTo update and view the test coverage report:\n\n```bash\n$ go test -coverprofile coverage.out\n$ go tool cover -html coverage.out\n```\n\n## License\n\n[libusb][] is released under the MIT license. Please see the\n[LICENSE.txt][] file for more information.\n\n[GitHub Flow]: http://scottchacon.com/2011/08/31/github-flow.html\n[godoc image]: https://godoc.org/github.com/gotmc/libusb?status.svg\n[godoc link]: https://godoc.org/github.com/gotmc/libusb\n[libusb]: https://github.com/gotmc/libusb\n[libusb-c]: http://libusb.info\n[LICENSE.txt]: https://github.com/gotmc/libusb/blob/master/LICENSE.txt\n[license image]: https://img.shields.io/badge/license-MIT-blue.svg\n[pull request]: https://help.github.com/articles/using-pull-requests\n[report badge]: https://goreportcard.com/badge/github.com/gotmc/libusb\n[report card]: https://goreportcard.com/report/github.com/gotmc/libusb\n[Scott Chacon]: http://scottchacon.com/about.html\n[travis image]: http://img.shields.io/travis/gotmc/libusb/master.svg\n[travis link]: https://travis-ci.org/gotmc/libusb\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftaigrr%2Flibusb","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftaigrr%2Flibusb","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftaigrr%2Flibusb/lists"}