{"id":46839831,"url":"https://github.com/vexide/pros-rs","last_synced_at":"2026-03-10T12:33:59.239Z","repository":{"id":153284983,"uuid":"627714375","full_name":"vexide/pros-rs","owner":"vexide","description":"Opinionated Rust binding for the PROS library and operating system.","archived":false,"fork":false,"pushed_at":"2026-02-26T05:10:47.000Z","size":8654,"stargazers_count":19,"open_issues_count":19,"forks_count":7,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-02-26T09:38:21.875Z","etag":null,"topics":["bindings","pros","rust","vex","vex-v5"],"latest_commit_sha":null,"homepage":"","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/vexide.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2023-04-14T03:28:44.000Z","updated_at":"2026-02-26T05:10:51.000Z","dependencies_parsed_at":"2024-03-01T04:24:03.500Z","dependency_job_id":"91dac1b4-b11d-48d4-a544-4097c351284c","html_url":"https://github.com/vexide/pros-rs","commit_stats":null,"previous_names":["pros-rs/pros-rs","gavin-niederman/pros-rs","vexide/pros-rs"],"tags_count":7,"template":false,"template_full_name":null,"purl":"pkg:github/vexide/pros-rs","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vexide%2Fpros-rs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vexide%2Fpros-rs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vexide%2Fpros-rs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vexide%2Fpros-rs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vexide","download_url":"https://codeload.github.com/vexide/pros-rs/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vexide%2Fpros-rs/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30333530,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-10T05:25:20.737Z","status":"ssl_error","status_checked_at":"2026-03-10T05:25:17.430Z","response_time":106,"last_error":"SSL_read: 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":["bindings","pros","rust","vex","vex-v5"],"created_at":"2026-03-10T12:33:58.624Z","updated_at":"2026-03-10T12:33:59.223Z","avatar_url":"https://github.com/vexide.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Pros-rs\n\nOpinionated Rust bindings for the [PROS](https://github.com/purduesigbots/pros) library and kernel.\n\n![Maintained: no](https://img.shields.io/maintenance/no/2024)\n\n\u003e [!important]\n\u003e pros-rs is deprecated and unmaintained; new projects should instead use\n\u003e [`vexide`](https://crates.io/crates/vexide), a similar library with features like differential\n\u003e uploading and `std` support.\n\n## Usage\n\n## Compiling\n\nThe only dependency of pros-rs outside of Rust is The Arm Gnu Toolchain (arm-none-eabi-gcc).\n\nRead the installation guide for your OS to see how to get things set up.\n\n### Windows\nSteps:\n1. Run The Arm Gnu Toolchain [here](https://developer.arm.com/downloads/-/arm-gnu-toolchain-downloads)\n2. Install the pros cli, instructions are [here](https://pros.cs.purdue.edu/v5/getting-started/windows.html)\n3. Install cargo pros with ``cargo install cargo-pros``\n\nTo compile the project just run ``cargo pros build``.\n\n### Linux\n\nThe steps for getting pros-rs compiling are slightly different based on if you use Nix or not.\n\n#### With Nix\n\nThe Nix flake contains the Arm GNU Toolchain, cargo pros, and pros-cli.\n\nThere is a ``.envrc`` file included for Nix + Direnv users.\n\n#### Without Nix\n\nInstall arm-none-eabi-gcc and pros-cli from your package manager of choice.\nCargo pros can be installed with ``cargo install cargo-pros``.\n\n### MacOS\n\nThis project depends on the Xcode Command Line Tools.\nChances are that if you develop on MacOS you have them already, but if not you can install them with `xcode-select --install`.\n\nMost of the other dependencies can easily be installed with Homebrew.\n\nInstall the Arm GNU Toolchain with\n`brew install osx-cross/arm/arm-gcc-bin`.\n\nInstall pros-cli with\n`brew install purduesigbots/pros/pros-cli`.\n\nAnd you are done! Compile the project with `cargo build`.\n\n## Compiling for WASM\n\nTo build projects in this repository for WebAssembly, run ``cargo pros build -s``\nThis will automatically pass all of the correct arguments to cargo.\n\nIf for some reason you want to do it manually, this is the command:\n`cargo build --target wasm32-unknown-unknown -Zbuild-std=std,panic_abort`.\n\nThe extra build-std argument is neccesary because this repository's `.cargo/config.toml` enables build-std but only for core, alloc, and compiler_builtins. WebAssembly does come with `std` but there is [currently](https://github.com/rust-lang/cargo/issues/8733) no way to conditionally enable build-std.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvexide%2Fpros-rs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvexide%2Fpros-rs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvexide%2Fpros-rs/lists"}