diff options
| author | Valentin <[email protected]> | 2018-06-10 14:01:36 +0200 |
|---|---|---|
| committer | Valentin <[email protected]> | 2018-06-10 14:02:52 +0200 |
| commit | 77c84eb66cefde656cc74865bee2e3bc7a24245a (patch) | |
| tree | e110ed00d632d01caa0f5f1e1636cd8656733b25 /ctr-std/src/Cargo.toml | |
| parent | Update Travis to latest Nightly ( ͡° ͜ʖ ͡°) (diff) | |
| download | ctru-rs-77c84eb66cefde656cc74865bee2e3bc7a24245a.tar.xz ctru-rs-77c84eb66cefde656cc74865bee2e3bc7a24245a.zip | |
Fixes according to Fenrir's review
Diffstat (limited to 'ctr-std/src/Cargo.toml')
| -rw-r--r-- | ctr-std/src/Cargo.toml | 51 |
1 files changed, 0 insertions, 51 deletions
diff --git a/ctr-std/src/Cargo.toml b/ctr-std/src/Cargo.toml deleted file mode 100644 index 1201759..0000000 --- a/ctr-std/src/Cargo.toml +++ /dev/null @@ -1,51 +0,0 @@ -[package] -authors = ["The Rust Project Developers"] -name = "std" -version = "0.0.0" -build = "build.rs" -license = "MIT/Apache-2.0" -repository = "https://github.com/rust-lang/rust.git" -description = "The Rust Standard Library" - -[lib] -name = "std" -path = "lib.rs" -crate-type = ["dylib", "rlib"] - -[dependencies] -alloc = { path = "../liballoc" } -alloc_jemalloc = { path = "../liballoc_jemalloc", optional = true } -alloc_system = { path = "../liballoc_system" } -panic_unwind = { path = "../libpanic_unwind", optional = true } -panic_abort = { path = "../libpanic_abort" } -core = { path = "../libcore" } -libc = { path = "../rustc/libc_shim" } -compiler_builtins = { path = "../rustc/compiler_builtins_shim" } -profiler_builtins = { path = "../libprofiler_builtins", optional = true } -std_unicode = { path = "../libstd_unicode" } -unwind = { path = "../libunwind" } - -[dev-dependencies] -rand = "0.4" - -[target.x86_64-apple-darwin.dependencies] -rustc_asan = { path = "../librustc_asan" } -rustc_tsan = { path = "../librustc_tsan" } - -[target.x86_64-unknown-linux-gnu.dependencies] -rustc_asan = { path = "../librustc_asan" } -rustc_lsan = { path = "../librustc_lsan" } -rustc_msan = { path = "../librustc_msan" } -rustc_tsan = { path = "../librustc_tsan" } - -[build-dependencies] -build_helper = { path = "../build_helper" } - -[features] -backtrace = [] -debug-jemalloc = ["alloc_jemalloc/debug"] -jemalloc = ["alloc_jemalloc"] -force_alloc_system = [] -panic-unwind = ["panic_unwind"] -profiler = ["profiler_builtins"] -wasm_syscall = [] |