aboutsummaryrefslogtreecommitdiff
path: root/ctr-std
diff options
context:
space:
mode:
authorFenrir <[email protected]>2017-01-21 21:11:02 -0700
committerFenrir <[email protected]>2017-01-21 21:11:02 -0700
commitdffce57257b648873354af585855cc6cc8544422 (patch)
tree16c599449cf2b0bbeb957222ee11345caf27e551 /ctr-std
parentWe stdlib now (diff)
downloadctru-rs-dffce57257b648873354af585855cc6cc8544422.tar.xz
ctru-rs-dffce57257b648873354af585855cc6cc8544422.zip
Bring in all the crates
Diffstat (limited to 'ctr-std')
-rw-r--r--ctr-std/Cargo.toml4
-rw-r--r--ctr-std/README.md4
2 files changed, 8 insertions, 0 deletions
diff --git a/ctr-std/Cargo.toml b/ctr-std/Cargo.toml
index dfd5037..25193cc 100644
--- a/ctr-std/Cargo.toml
+++ b/ctr-std/Cargo.toml
@@ -6,6 +6,10 @@ license = "MIT/Apache 2.0"
[dependencies.compiler_builtins]
git = "https://github.com/rust-lang-nursery/compiler-builtins"
+[dependencies.ctr-libc]
+path = "../ctr-libc"
+default-features = false
+
[dependencies.alloc_system]
version = "0.1.1"
diff --git a/ctr-std/README.md b/ctr-std/README.md
index 604a43c..15ee4b9 100644
--- a/ctr-std/README.md
+++ b/ctr-std/README.md
@@ -1 +1,5 @@
A work-in-progress port of the Rust Standard Library for the Nintendo 3DS, based on [ctrulib](https://github.com/smealum/ctrulib/) and the [devkitARM](http://devkitPro.org) toolchain.
+
+## Structure
+
+This library aims to mimick the Rust standard library's public interface as closely as possible, exposing functionality that is common between the 3DS and other platforms. System-specific functionality such as control input, save file management, GPU features, and so forth are implemented in `ctru-rs`.