From b99bd46eb284ea09f2b695646f47f5e16832dc55 Mon Sep 17 00:00:00 2001 From: Joshua Nelson Date: Sun, 21 Feb 2021 20:00:57 -0500 Subject: [PATCH] Update comrak to 0.9.1 --- Cargo.lock | 20 ++++++++++++++++++-- Cargo.toml | 2 +- 2 files changed, 19 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index fd65ffba9..657934cac 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,5 +1,7 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. +version = 3 + [[package]] name = "ab_glyph_rasterizer" version = "0.1.2" @@ -322,18 +324,20 @@ dependencies = [ [[package]] name = "comrak" -version = "0.8.0" +version = "0.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b818732a109eeabbe99fee28030ff8ecbd606889fcd25509ed933e6c69b7aa69" +checksum = "43e35da16961500625e065fba09983bb300bbf3c6fbc1840bd5bbda595ee6d80" dependencies = [ "entities", "lazy_static", "pest", "pest_derive", "regex", + "shell-words", "twoway", "typed-arena", "unicode_categories", + "xdg", ] [[package]] @@ -3159,6 +3163,12 @@ dependencies = [ "opaque-debug 0.3.0", ] +[[package]] +name = "shell-words" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6fa3938c99da4914afedd13bf3d79bcb6c277d1b2c398d23257a304d9e1b074" + [[package]] name = "shlex" version = "0.1.1" @@ -4133,6 +4143,12 @@ dependencies = [ "libc", ] +[[package]] +name = "xdg" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d089681aa106a86fade1b0128fb5daf07d5867a509ab036d99988dec80429a57" + [[package]] name = "xml-rs" version = "0.8.3" diff --git a/Cargo.toml b/Cargo.toml index 669fca1ad..06b12e74f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -37,7 +37,7 @@ badge = { path = "crates/badge" } docsrs-metadata = { path = "crates/metadata" } backtrace = "0.3" failure = { version = "0.1.3", features = ["backtrace"] } -comrak = { version = "0.8", default-features = false } +comrak = { version = "0.9.1", default-features = false } toml = "0.5" schemamama = "0.3" schemamama_postgres = "0.3"