summaryrefslogtreecommitdiff
path: root/Cargo.lock
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2023-04-09 14:38:27 +0300
committerLars Wirzenius <liw@liw.fi>2023-04-10 09:56:15 +0300
commited827859f36ff5cc9b2360284b92cb56c5b88d41 (patch)
tree674e238696fb94ececaedb2a2ab7d84c086f9c60 /Cargo.lock
parent87b6778163210748e1c80368cd5ca91afa4a07b9 (diff)
downloadriki-ed827859f36ff5cc9b2360284b92cb56c5b88d41.tar.gz
refactor: use html-page crate to represent HTML
Sponsored-by: author
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock15
1 files changed, 13 insertions, 2 deletions
diff --git a/Cargo.lock b/Cargo.lock
index c9d2409..9b801a0 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -526,14 +526,24 @@ dependencies = [
[[package]]
name = "html-escape"
-version = "0.2.11"
+version = "0.2.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b8e7479fa1ef38eb49fb6a42c426be515df2d063f06cb8efd3e50af073dbc26c"
+checksum = "6d1ad449764d627e22bfd7cd5e8868264fc9236e07c752972b4080cd351cb476"
dependencies = [
"utf8-width",
]
[[package]]
+name = "html-page"
+version = "0.1.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "3f8314b0ea57e9e3fc648213a02315e8a16154bb86da7516fec7a09ec4d7417c"
+dependencies = [
+ "html-escape",
+ "line-col",
+]
+
+[[package]]
name = "humansize"
version = "1.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -1136,6 +1146,7 @@ dependencies = [
"fehler",
"git-testament",
"html-escape",
+ "html-page",
"lalrpop",
"lalrpop-util",
"libc",