Browse Source

Actually use test_runner::run_gdb (I forgor)

pull/26/head
Ian Chamberlain 1 year ago
parent
commit
a06dc14a86
No known key found for this signature in database
GPG Key ID: AE5484D09405AA60
  1. 3
      citro3d/Cargo.toml
  2. 2
      citro3d/src/lib.rs

3
citro3d/Cargo.toml

@ -13,3 +13,6 @@ citro3d-sys = { git = "https://github.com/rust3ds/citro3d-rs.git" } @@ -13,3 +13,6 @@ citro3d-sys = { git = "https://github.com/rust3ds/citro3d-rs.git" }
ctru-rs = { git = "https://github.com/rust3ds/ctru-rs.git" }
ctru-sys = { git = "https://github.com/rust3ds/ctru-rs.git" }
libc = "0.2.125"
[dev-dependencies]
test-runner = { git = "https://github.com/rust3ds/test-runner.git" }

2
citro3d/src/lib.rs

@ -1,4 +1,6 @@ @@ -1,4 +1,6 @@
//! Safe Rust bindings to `citro3d`.
#![feature(custom_test_frameworks)]
#![test_runner(test_runner::run_gdb)]
pub mod attrib;
pub mod buffer;

Loading…
Cancel
Save