From d068f69b4290451bc5abcb65e74eeae41a26fd41 Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Sat, 17 Feb 2024 17:45:21 -0600 Subject: [PATCH] build: update comrak -> 0.21.0 --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 2f7623f..e905931 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -269,9 +269,9 @@ checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7" [[package]] name = "comrak" -version = "0.20.0" +version = "0.21.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9f18e72341e6cdc7489cffb76f993812a14a906db54dedb020044ccc211dcaae" +checksum = "6751998a48e2327773c95f6f8e03c6e77c0156ce539d74c17d2199ff3d05e197" dependencies = [ "clap", "derive_builder", diff --git a/Cargo.toml b/Cargo.toml index 71f31a9..f8865c2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -comrak = "0.20.0" +comrak = "0.21.0" syntect = { version = "5.1.0", default-features = false, features = ["default-fancy"]} anyhow = "1.0.75" clap = { version = "4.4.0", features = ["derive"] }