diff --git a/rust/common/Cargo.toml b/rust/common/Cargo.toml index 0731747..f421cc4 100644 --- a/rust/common/Cargo.toml +++ b/rust/common/Cargo.toml @@ -2,3 +2,13 @@ name = "minify-html-common" publish = false version = "0.0.1" +authors = ["Wilson Lin "] +homepage = "https://github.com/wilsonzlin/minify-html" +repository = "https://github.com/wilsonzlin/minify-html.git" +edition = "2018" +include = ["/src/**/*", "/Cargo.toml"] + +[dependencies] +aho-corasick = "0.7" +lazy_static = "1.4" +memchr = "2" diff --git a/rust/common/src/lib.rs b/rust/common/src/lib.rs index 750b190..fdba194 100644 --- a/rust/common/src/lib.rs +++ b/rust/common/src/lib.rs @@ -1,3 +1,4 @@ +pub mod gen; pub mod pattern; pub mod spec; pub mod whitespace;