From 6c178aa1da4864377ccdf79a9e83428b68ebbddc Mon Sep 17 00:00:00 2001 From: Fenrir Date: Wed, 21 Sep 2016 23:45:35 -0700 Subject: [PATCH] Add alloc_system dependency --- Cargo.toml | 3 +++ src/lib.rs | 1 + 2 files changed, 4 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 0aa1ecf..f95ca35 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,6 +10,9 @@ version = "0.4.0" [dependencies.ctru-sys] path = "ctru-sys" +[dependencies.alloc_system3ds] +git = "https://github.com/rust3ds/alloc_system3ds" + [lib] crate-type = ["rlib"] name = "ctru" diff --git a/src/lib.rs b/src/lib.rs index 7fa8597..14702af 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -13,6 +13,7 @@ #![crate_name = "ctru"] extern crate alloc; +extern crate alloc_system; extern crate collections; extern crate rustc_unicode;