summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Bridle <bridle.benjamin@gmail.com>2026-01-30 19:18:57 +1300
committerBen Bridle <bridle.benjamin@gmail.com>2026-01-30 19:18:57 +1300
commit95abaa4e376a63ddb46a598daec162692f7be4e8 (patch)
treee37df7b8f7d28547dbd748df96f020667118161a
parentdd0aff0b170a71ef2962fcd38b710c581d90f9da (diff)
downloadtoaster-95abaa4e376a63ddb46a598daec162692f7be4e8.zip
Update markdown dependency
This fixes an issue where tables that contain line elements that themselves contain characters that are valid delimiters for another line element were not being recognised as tables.
-rw-r--r--Cargo.lock4
-rw-r--r--Cargo.toml2
2 files changed, 3 insertions, 3 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 3f2858f..ed55558 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -68,8 +68,8 @@ dependencies = [
[[package]]
name = "markdown"
-version = "3.3.1"
-source = "git+git://benbridle.com/markdown?tag=v3.3.1#2bff486208df17cae8498f602f81c6e2024a1a11"
+version = "3.3.2"
+source = "git+git://benbridle.com/markdown?tag=v3.3.2#e8d8a1146de5e297dda3dd6264a02f9d6938c3e1"
[[package]]
name = "memchr"
diff --git a/Cargo.toml b/Cargo.toml
index a94aa66..d924363 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -5,7 +5,7 @@ edition = "2021"
[dependencies]
vagabond = { git = "git://benbridle.com/vagabond", tag = "v1.1.1" }
-markdown = { git = "git://benbridle.com/markdown", tag = "v3.3.1" }
+markdown = { git = "git://benbridle.com/markdown", tag = "v3.3.2" }
recipe = { git = "git://benbridle.com/recipe", tag = "v1.4.0" }
log = { git = "git://benbridle.com/log", tag = "v2.0.0" }
switchboard = { git = "git://benbridle.com/switchboard", tag = "v1.0.0" }