mkdocs-minify-html-plugin 0.3.7__tar.gz → 0.3.9__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {mkdocs_minify_html_plugin-0.3.7 → mkdocs_minify_html_plugin-0.3.9}/Cargo.lock +3 -3
- {mkdocs_minify_html_plugin-0.3.7 → mkdocs_minify_html_plugin-0.3.9}/Cargo.toml +2 -2
- {mkdocs_minify_html_plugin-0.3.7 → mkdocs_minify_html_plugin-0.3.9}/PKG-INFO +1 -1
- {mkdocs_minify_html_plugin-0.3.7 → mkdocs_minify_html_plugin-0.3.9}/pyproject.toml +1 -1
- {mkdocs_minify_html_plugin-0.3.7 → mkdocs_minify_html_plugin-0.3.9}/src/lib.rs +2 -2
- {mkdocs_minify_html_plugin-0.3.7 → mkdocs_minify_html_plugin-0.3.9}/LICENSE +0 -0
- {mkdocs_minify_html_plugin-0.3.7 → mkdocs_minify_html_plugin-0.3.9}/README.md +0 -0
- {mkdocs_minify_html_plugin-0.3.7 → mkdocs_minify_html_plugin-0.3.9}/python/mkdocs_minify_html_plugin/__init__.py +0 -0
- {mkdocs_minify_html_plugin-0.3.7 → mkdocs_minify_html_plugin-0.3.9}/python/mkdocs_minify_html_plugin/_minify_html.pyi +0 -0
- {mkdocs_minify_html_plugin-0.3.7 → mkdocs_minify_html_plugin-0.3.9}/python/mkdocs_minify_html_plugin/plugin.py +0 -0
- {mkdocs_minify_html_plugin-0.3.7 → mkdocs_minify_html_plugin-0.3.9}/python/mkdocs_minify_html_plugin/py.typed +0 -0
|
@@ -573,9 +573,9 @@ dependencies = [
|
|
|
573
573
|
|
|
574
574
|
[[package]]
|
|
575
575
|
name = "minify-html"
|
|
576
|
-
version = "0.
|
|
576
|
+
version = "0.18.0"
|
|
577
577
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
578
|
-
checksum = "
|
|
578
|
+
checksum = "16eb12bf64f1424394212ef9dc7219c044212d898852d92d2ffed0a1a48fe046"
|
|
579
579
|
dependencies = [
|
|
580
580
|
"ahash 0.8.12",
|
|
581
581
|
"aho-corasick",
|
|
@@ -617,7 +617,7 @@ dependencies = [
|
|
|
617
617
|
|
|
618
618
|
[[package]]
|
|
619
619
|
name = "mkdocs-minify-html-plugin"
|
|
620
|
-
version = "0.3.
|
|
620
|
+
version = "0.3.9"
|
|
621
621
|
dependencies = [
|
|
622
622
|
"minify-html",
|
|
623
623
|
"pyo3",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[package]
|
|
2
2
|
name = "mkdocs-minify-html-plugin"
|
|
3
|
-
version = "0.3.
|
|
3
|
+
version = "0.3.9"
|
|
4
4
|
edition = "2024"
|
|
5
5
|
license = "MIT"
|
|
6
6
|
include = [
|
|
@@ -20,7 +20,7 @@ name = "_minify_html"
|
|
|
20
20
|
crate-type = ["cdylib"]
|
|
21
21
|
|
|
22
22
|
[dependencies]
|
|
23
|
-
minify-html = "=0.
|
|
23
|
+
minify-html = "=0.18.0"
|
|
24
24
|
pyo3 = { version = "=0.27.1", features = ["extension-module"] }
|
|
25
25
|
|
|
26
26
|
[profile.release]
|
|
@@ -4,7 +4,7 @@ requires = ["maturin>=1,<2"]
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "mkdocs-minify-html-plugin"
|
|
7
|
-
version = "0.3.
|
|
7
|
+
version = "0.3.9"
|
|
8
8
|
description = "MkDocs plugin for minification using minify-html, an extremely fast and smart HTML + JS + CSS minifier"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
authors = [{ name = "monosans", email = "hsyqixco@protonmail.com" }]
|
|
@@ -85,7 +85,7 @@ fn minify(
|
|
|
85
85
|
keep_ssi_comments: bool,
|
|
86
86
|
minify_css: bool,
|
|
87
87
|
minify_doctype: bool,
|
|
88
|
-
|
|
88
|
+
minify_js: bool,
|
|
89
89
|
preserve_brace_template_syntax: bool,
|
|
90
90
|
preserve_chevron_percent_template_syntax: bool,
|
|
91
91
|
remove_bangs: bool,
|
|
@@ -103,7 +103,7 @@ fn minify(
|
|
|
103
103
|
keep_ssi_comments,
|
|
104
104
|
minify_css,
|
|
105
105
|
minify_doctype,
|
|
106
|
-
minify_js
|
|
106
|
+
minify_js,
|
|
107
107
|
preserve_brace_template_syntax,
|
|
108
108
|
preserve_chevron_percent_template_syntax,
|
|
109
109
|
remove_bangs,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|