diff options
author | Hocdoc <bernhardberger@gmx.at> | 2022-11-10 17:00:33 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-10 17:00:33 +0100 |
commit | d5ae7bb13fdb5e855c678ced9b66d26674e08136 (patch) | |
tree | 78ebf2605d5552f6dafab2c87489aeca1019c76e /examples/lib.rs | |
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 'examples/lib.rs')
-rw-r--r-- | examples/lib.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/examples/lib.rs b/examples/lib.rs index 6d156df..3c76022 100644 --- a/examples/lib.rs +++ b/examples/lib.rs @@ -1,5 +1,3 @@ -extern crate markdown; - fn main() -> Result<(), String> { // Turn on debugging. // You can show it with `RUST_LOG=debug cargo run --example lib` |