From b47c730d86cde47f535336e83668998af2dfafca Mon Sep 17 00:00:00 2001 From: Wilson Lin Date: Sun, 8 Aug 2021 18:03:34 +1000 Subject: [PATCH] Fix minify-html-common --- rust/common/Cargo.toml | 10 ++++++++++ rust/common/src/lib.rs | 1 + 2 files changed, 11 insertions(+) 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;