diff --git a/Cargo.lock b/Cargo.lock index 4899872..653e615 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -83,14 +83,6 @@ name = "libc" version = "0.2.71" source = "registry+https://github.com/rust-lang/crates.io-index" -[[package]] -name = "markdown-rs" -version = "0.1.0" -dependencies = [ - "crossbeam-utils 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", - "structopt 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "proc-macro-error" version = "1.0.2" @@ -131,6 +123,14 @@ dependencies = [ "proc-macro2 1.0.17 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "snekdown" +version = "0.1.0" +dependencies = [ + "crossbeam-utils 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", + "structopt 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "strsim" version = "0.8.0" diff --git a/Cargo.toml b/Cargo.toml index e4bb72a..00b5ece 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,5 +1,5 @@ [package] -name = "markdown-rs" +name = "snekdown" version = "0.1.0" authors = ["trivernis "] edition = "2018" diff --git a/src/main.rs b/src/main.rs index 93aa609..e4a9afd 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,5 +1,5 @@ -use markdown_rs::format::html::ToHtml; -use markdown_rs::parser::Parser; +use snekdown::format::html::ToHtml; +use snekdown::parser::Parser; use std::fs::write; use std::time::Instant;