aboutsummaryrefslogtreecommitdiffstats
path: root/build.rs
diff options
context:
space:
mode:
authorLibravatar Hocdoc <bernhardberger@gmx.at>2022-11-10 17:00:33 +0100
committerLibravatar GitHub <noreply@github.com>2022-11-10 17:00:33 +0100
commitd5ae7bb13fdb5e855c678ced9b66d26674e08136 (patch)
tree78ebf2605d5552f6dafab2c87489aeca1019c76e /build.rs
parent34ea2841df53a1aafafb01c887965469344552ba (diff)
downloadmarkdown-rs-d5ae7bb13fdb5e855c678ced9b66d26674e08136.tar.gz
markdown-rs-d5ae7bb13fdb5e855c678ced9b66d26674e08136.tar.bz2
markdown-rs-d5ae7bb13fdb5e855c678ced9b66d26674e08136.zip
Remove unneeded `extern crate`s
Closes GH-28. Co-authored-by: Bernhard Berger <bernhardberger3456@gmail.com>
Diffstat (limited to 'build.rs')
-rw-r--r--build.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/build.rs b/build.rs
index 3ed1e8d..658cb0a 100644
--- a/build.rs
+++ b/build.rs
@@ -1,4 +1,3 @@
-extern crate reqwest;
use regex::Regex;
use std::fs;
@@ -67,7 +66,6 @@ async fn commonmark() {
// > 👉 **Important**: this module is generated by `build.rs`.
// > It is generate from the latest CommonMark website.
-extern crate markdown;
use markdown::{{to_html_with_options, CompileOptions, Options}};
use pretty_assertions::assert_eq;