From: phiresky Date: Wed, 5 Jul 2023 17:08:53 +0000 (+0200) Subject: upgrade markdown-it to fix panic (#3490) X-Git-Url: http://these/git/%22https:/join-lemmy.org/static/gitweb.js?a=commitdiff_plain;h=2158621bdab98cea9724fb7c4aaddb6990e1213a;p=lemmy.git upgrade markdown-it to fix panic (#3490) Co-authored-by: Dessalines --- diff --git a/Cargo.lock b/Cargo.lock index 1b8336e9..7988f244 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3210,9 +3210,9 @@ dependencies = [ [[package]] name = "markdown-it" -version = "0.5.0" +version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "53107ab22a09ae3b2eaedccf1d1c6aa58c1aa77e15689a799e0d8eda2b1a7d54" +checksum = "c44ffb00018b76ef3c6eff5e17d34b44f0bbded0b70291940564c527cba07ad8" dependencies = [ "argparse", "const_format", diff --git a/crates/utils/Cargo.toml b/crates/utils/Cargo.toml index 47b55f73..fc1feb85 100644 --- a/crates/utils/Cargo.toml +++ b/crates/utils/Cargo.toml @@ -43,7 +43,7 @@ deser-hjson = "1.0.2" smart-default = "0.7.1" jsonwebtoken = "8.1.1" lettre = "0.10.1" -markdown-it = "0.5.0" +markdown-it = "0.5.1" totp-rs = { version = "5.0.2", features = ["gen_secret", "otpauth"] } enum-map = "2.5"