summaryrefslogtreecommitdiffstats
path: root/third_party/rust/sha-1/benches
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/rust/sha-1/benches')
-rw-r--r--third_party/rust/sha-1/benches/lib.rs7
1 files changed, 7 insertions, 0 deletions
diff --git a/third_party/rust/sha-1/benches/lib.rs b/third_party/rust/sha-1/benches/lib.rs
new file mode 100644
index 0000000000..e204e565a4
--- /dev/null
+++ b/third_party/rust/sha-1/benches/lib.rs
@@ -0,0 +1,7 @@
+#![no_std]
+#![feature(test)]
+#[macro_use]
+extern crate digest;
+extern crate sha1;
+
+bench!(sha1::Sha1);