From 3a24938387c4759168273215ca37eb8ad64d3908 Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Mon, 14 Nov 2016 10:46:32 -0700 Subject: [PATCH] Reenable goblin --- Cargo.toml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 739f7d7..6db8fce 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,6 +12,11 @@ bitflags = "*" spin = "*" redox_syscall = { path = "syscall/" } +[dependencies.goblin] +git = "https://github.com/redox-os/goblin.git" +default-features = false +features = ["elf32", "elf64"] + [dev-dependencies] arch_test = { path = "arch/test" } @@ -21,11 +26,6 @@ arch_arm = { path = "arch/arm" } [target.'cfg(target_arch = "x86_64")'.dependencies] arch_x86_64 = { path = "arch/x86_64" } -[target.'cfg(not(test))'.dependencies.goblin] -git = "https://github.com/redox-os/goblin.git" -default-features = false -features = ["elf32", "elf64"] - [profile.dev] panic = "unwind"