diff options
author | 2022-11-10 17:00:33 +0100 | |
---|---|---|
committer | 2022-11-10 17:00:33 +0100 | |
commit | d5ae7bb13fdb5e855c678ced9b66d26674e08136 (patch) | |
tree | 78ebf2605d5552f6dafab2c87489aeca1019c76e /tests/c | |
parent | 34ea2841df53a1aafafb01c887965469344552ba (diff) | |
download | markdown-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 '')
-rw-r--r-- | tests/character_escape.rs | 1 | ||||
-rw-r--r-- | tests/character_reference.rs | 1 | ||||
-rw-r--r-- | tests/code_fenced.rs | 1 | ||||
-rw-r--r-- | tests/code_indented.rs | 1 | ||||
-rw-r--r-- | tests/code_text.rs | 1 | ||||
-rw-r--r-- | tests/commonmark.rs | 1 |
6 files changed, 0 insertions, 6 deletions
diff --git a/tests/character_escape.rs b/tests/character_escape.rs index 41cc68d..e062f28 100644 --- a/tests/character_escape.rs +++ b/tests/character_escape.rs @@ -1,4 +1,3 @@ -extern crate markdown; use markdown::{ mdast::{Node, Paragraph, Root, Text}, to_html, to_html_with_options, to_mdast, diff --git a/tests/character_reference.rs b/tests/character_reference.rs index ab253c4..03282a1 100644 --- a/tests/character_reference.rs +++ b/tests/character_reference.rs @@ -1,4 +1,3 @@ -extern crate markdown; use markdown::{ mdast::{Node, Paragraph, Root, Text}, to_html, to_html_with_options, to_mdast, diff --git a/tests/code_fenced.rs b/tests/code_fenced.rs index 73bcb9a..403a893 100644 --- a/tests/code_fenced.rs +++ b/tests/code_fenced.rs @@ -1,4 +1,3 @@ -extern crate markdown; use markdown::{ mdast::{Code, Node, Root}, to_html, to_html_with_options, to_mdast, diff --git a/tests/code_indented.rs b/tests/code_indented.rs index 66046c4..1bd5726 100644 --- a/tests/code_indented.rs +++ b/tests/code_indented.rs @@ -1,4 +1,3 @@ -extern crate markdown; use markdown::{ mdast::{Code, Node, Root}, to_html, to_html_with_options, to_mdast, diff --git a/tests/code_text.rs b/tests/code_text.rs index 482c46f..47d8b19 100644 --- a/tests/code_text.rs +++ b/tests/code_text.rs @@ -1,4 +1,3 @@ -extern crate markdown; use markdown::{ mdast::{InlineCode, Node, Paragraph, Root, Text}, to_html, to_html_with_options, to_mdast, diff --git a/tests/commonmark.rs b/tests/commonmark.rs index 7d62016..30f62ca 100644 --- a/tests/commonmark.rs +++ b/tests/commonmark.rs @@ -3,7 +3,6 @@ // > 👉 **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; |