From 3bd6c55721e99fad3b9c123c12548b4190e0209d Mon Sep 17 00:00:00 2001 From: Fabian Date: Sun, 3 Jan 2021 19:15:22 -0600 Subject: [PATCH] Remove unused dependency --- Cargo.toml | 3 --- src/rust/lib.rs | 4 ---- 2 files changed, 7 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 6e92b93f..f324c770 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,9 +3,6 @@ name = "v86" version = "0.1.0" publish = false -[dev-dependencies] -quickcheck = "0.6.2" - [features] default = [] profiler = [] diff --git a/src/rust/lib.rs b/src/rust/lib.rs index 31cfc8e2..6d53b7c8 100644 --- a/src/rust/lib.rs +++ b/src/rust/lib.rs @@ -3,10 +3,6 @@ #![feature(or_patterns)] #![allow(const_item_mutation)] -#[cfg(test)] -#[macro_use] -extern crate quickcheck; - #[macro_use] mod dbg;