diff options
| author | Fenrir <[email protected]> | 2017-07-07 11:39:39 -0600 |
|---|---|---|
| committer | Fenrir <[email protected]> | 2017-07-07 12:38:43 -0600 |
| commit | eec80b496b8de2ee332b4ae04fbe00c7c93525b3 (patch) | |
| tree | f809316596ccf906c46c420c72fadbc568db871f /ctru-sys | |
| parent | Merge pull request #30 from kentaromiura/compile_again (diff) | |
| download | archived-ctru-rs-eec80b496b8de2ee332b4ae04fbe00c7c93525b3.tar.xz archived-ctru-rs-eec80b496b8de2ee332b4ae04fbe00c7c93525b3.zip | |
Use libc from crates.io
The libc crate has newlib bindings now, so we don't have to maintain them in-tree anymore
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; |