Auto merge of #4286 - phansch:update_pulldown_cmark3, r=flip1995

Update pulldown-cmark to 0.5.3

Fixes a couple of crashes of which I added one example to our tests.

changelog: Update `pulldown-cmark` to 0.5.3 to fix potential crashes in `doc_markdown` lint
This commit is contained in:
bors 2019-07-19 07:25:55 +00:00
commit 958af10f12
2 changed files with 5 additions and 1 deletions

View File

@ -27,7 +27,7 @@ semver = "0.9.0"
serde = { version = "1.0", features = ["derive"] } serde = { version = "1.0", features = ["derive"] }
toml = "0.5" toml = "0.5"
unicode-normalization = "0.1" unicode-normalization = "0.1"
pulldown-cmark = "0.5.2" pulldown-cmark = "0.5.3"
url = "1.7.0" url = "1.7.0"
if_chain = "1.0.0" if_chain = "1.0.0"
smallvec = { version = "0.6.5", features = ["union"] } smallvec = { version = "0.6.5", features = ["union"] }

View File

@ -178,3 +178,7 @@ fn issue_2210() {}
/// This should not cause the lint to trigger: /// This should not cause the lint to trigger:
/// #REQ-data-family.lint_partof_exists /// #REQ-data-family.lint_partof_exists
fn issue_2343() {} fn issue_2343() {}
/// This should not cause an ICE:
/// __|_ _|__||_|
fn pulldown_cmark_crash() {}