diff --git a/Cargo.toml b/Cargo.toml index 6ece88e..218f1bc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -32,7 +32,6 @@ description = "A MOS 6502 Emulator" license = "BSD-3-Clause" version = "0.0.1" authors = ["The 6502-rs Developers"] -build = "build.rs" [lib] # This will look in src/lib.rs @@ -41,10 +40,4 @@ name = "mos6502" [dependencies] bitflags = "0.9.1" log = "0.3.8" -num = "0.1" - -[build-dependencies] -skeptic = "0.13" - -[dev-dependencies] -skeptic = "0.13" +num = "0.1" \ No newline at end of file diff --git a/build.rs b/build.rs deleted file mode 100644 index a780b3d..0000000 --- a/build.rs +++ /dev/null @@ -1,5 +0,0 @@ -extern crate skeptic; - -fn main() { - skeptic::generate_doc_tests(&["README.md"]); -} diff --git a/tests/skeptic.rs b/tests/skeptic.rs deleted file mode 100644 index ff46c9c..0000000 --- a/tests/skeptic.rs +++ /dev/null @@ -1 +0,0 @@ -include!(concat!(env!("OUT_DIR"), "/skeptic-tests.rs"));