Change name of cargo package

pull/1/head
trivernis 4 years ago
parent 302669044f
commit 4b12391ff4

16
Cargo.lock generated

@ -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"

@ -1,5 +1,5 @@
[package]
name = "markdown-rs"
name = "snekdown"
version = "0.1.0"
authors = ["trivernis <trivernis@gmail.com>"]
edition = "2018"

@ -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;

Loading…
Cancel
Save