Rust on Nintendo Wii - A safe, idiomatic Rust wrapper for devkitPro's libogc
Find a file
ProfElements d027a327d1
All checks were successful
Rust CI / Check (push) Successful in 5m9s
Rust CI / Lints (push) Successful in 5m15s
♻️ chore(build): Update bindgen and remove warnings
2026-05-26 19:56:16 -05:00
.cargo Add CI functionality (#26) 2021-07-23 23:05:55 +00:00
.github/workflows 🐛 fix(ci): Make sure CI runs properly. Part 4 2026-05-26 19:46:57 -05:00
examples 🐛 fix(examples): no_mangle and no_main all the examples. Remove #![feature(start)]. Works on dolphin 2025-08-15 00:56:46 -05:00
ogc-sys ♻️ chore(build): Update bindgen and remove warnings 2026-05-26 19:56:16 -05:00
src 🔥 chore(features): Remove unused features 2026-05-26 19:11:16 -05:00
.gitignore add gitignore rule for files open by nano 2025-05-08 15:22:21 -04:00
Cargo.lock 🐛 fix: Update to latest libogc & bindgen & rust nightly 2026-05-26 18:40:14 -05:00
Cargo.toml 🐛 fix(Cargo.toml): Remove default mmio feature 2024-10-28 02:31:14 -05:00
LICENSE Update LICENSE year 2021-07-24 00:26:23 +01:00
powerpc-unknown-eabi.json 🐛 fix: Update to latest libogc & bindgen & rust nightly 2026-05-26 18:40:14 -05:00
README.md Add introduction for getting started (#88) 2023-10-26 19:53:43 +01:00

ogc-rs

Crates.io

A Rust wrapper library for devkitPro's libogc.

To get started, you'll first need to install the following dependencies on your system:

Then you'll need to fork this repo and git clone your fork into your local machine.

When that's done, do the following:

$ cd ogc-rs
$ rustup override set nightly
$ rustup component add rust-src
$ cargo check

If everything's working properly, cargo check should run successfully.

See the Wii testing project for an example on how to use this library.

Structure

This repository is organized as follows:

  • ogc-rs: Safe, idiomatic wrapper around ogc-sys.
  • ogc-sys: Low-level, unsafe bindings to libogc.

License

See LICENSE for more details.