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/Cargo.toml | |
| parent | Merge pull request #30 from kentaromiura/compile_again (diff) | |
| download | ctru-rs-eec80b496b8de2ee332b4ae04fbe00c7c93525b3.tar.xz 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/Cargo.toml')
| -rw-r--r-- | ctru-sys/Cargo.toml | 5 |
1 files changed, 3 insertions, 2 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 |