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 /ctr-std/Cargo.toml | |
| 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 'ctr-std/Cargo.toml')
| -rw-r--r-- | ctr-std/Cargo.toml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/ctr-std/Cargo.toml b/ctr-std/Cargo.toml index b7f6da1..8f3bb7e 100644 --- a/ctr-std/Cargo.toml +++ b/ctr-std/Cargo.toml @@ -6,11 +6,12 @@ license = "MIT/Apache 2.0" [dependencies.compiler_builtins] git = "https://github.com/rust-lang-nursery/compiler-builtins" -[dependencies.ctr-libc] -path = "../ctr-libc" +[dependencies.libc] +version = "0.2" +default-features = false [dependencies.ctru-sys] path = "../ctru-sys" [dependencies.alloc_system] -version = "0.1.1" +version = "0.1" |