Skip to content

Commit 3456e07

Browse files
committed
PR feedback
no more extern crate
1 parent b729685 commit 3456e07

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

src/lib.rs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,6 @@ pub use hashes::Hash;
2525
use std::fmt;
2626
use storage::Storage;
2727

28-
#[cfg(test)]
29-
#[macro_use]
30-
extern crate quickcheck;
31-
3228
// Helper macro for encoding input into output using sha1, sha2, tiny_keccak, or blake2
3329
macro_rules! encode {
3430
(sha1, Sha1, $input:expr, $output:expr) => {{

src/storage.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ impl Storage {
6262
#[cfg(test)]
6363
mod tests {
6464
use super::{Storage, MAX_INLINE};
65-
use quickcheck;
65+
use quickcheck::quickcheck;
6666

6767
#[test]
6868
fn struct_size() {

0 commit comments

Comments
 (0)