diff options
Diffstat (limited to 'ctru-sys')
| -rw-r--r-- | ctru-sys/Cargo.toml | 5 | ||||
| -rw-r--r-- | ctru-sys/src/lib.rs | 2 |
2 files changed, 4 insertions, 3 deletions
diff --git a/ctru-sys/Cargo.toml b/ctru-sys/Cargo.toml index 99e347b..38eeca8 100644 --- a/ctru-sys/Cargo.toml +++ b/ctru-sys/Cargo.toml @@ -4,5 +4,6 @@ version = "0.3.0" authors = ["Ronald Kinard <[email protected]>"] license = "https://en.wikipedia.org/wiki/Zlib_License" -[dependencies] -ctr-libc = { path = "../ctr-libc" } +[dependencies.libc] +version = "0.2" +default-features = false diff --git a/ctru-sys/src/lib.rs b/ctru-sys/src/lib.rs index 5bbc54d..d2b54aa 100644 --- a/ctru-sys/src/lib.rs +++ b/ctru-sys/src/lib.rs @@ -8,7 +8,7 @@ #![allow(non_camel_case_types, non_snake_case, overflowing_literals)] #![feature(untagged_unions)] -extern crate ctr_libc as libc; +extern crate libc; pub mod applets; pub mod console; |