diff --git a/Cargo.lock b/Cargo.lock index 46c9062..581ed58 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1221,19 +1221,6 @@ dependencies = [ "unicode-ident", ] -[[package]] -name = "pulldown-cmark" -version = "0.12.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f86ba2052aebccc42cbbb3ed234b8b13ce76f75c3551a303cb2bcffcff12bb14" -dependencies = [ - "bitflags 2.8.0", - "getopts", - "memchr", - "pulldown-cmark-escape", - "unicase", -] - [[package]] name = "pulldown-cmark" version = "0.13.0" @@ -1355,7 +1342,19 @@ checksum = "0a2c585be59b6b5dd66a9d2084aa1d8bd52fbdb806eafdeffb52791147862035" dependencies = [ "futures", "futures-timer", - "rstest_macros", + "rstest_macros 0.23.0", + "rustc_version", +] + +[[package]] +name = "rstest" +version = "0.25.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6fc39292f8613e913f7df8fa892b8944ceb47c247b78e1b1ae2f09e019be789d" +dependencies = [ + "futures-timer", + "futures-util", + "rstest_macros 0.25.0", "rustc_version", ] @@ -1377,6 +1376,24 @@ dependencies = [ "unicode-ident", ] +[[package]] +name = "rstest_macros" +version = "0.25.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1f168d99749d307be9de54d23fd226628d99768225ef08f6ffb52e0182a27746" +dependencies = [ + "cfg-if", + "glob", + "proc-macro-crate", + "proc-macro2", + "quote", + "regex", + "relative-path", + "rustc_version", + "syn", + "unicode-ident", +] + [[package]] name = "rustc-demangle" version = "0.1.24" @@ -1664,7 +1681,7 @@ dependencies = [ "edtui-jagged", "itertools 0.14.0", "pretty_assertions", - "pulldown-cmark 0.13.0", + "pulldown-cmark", "ratatui", "serde", "serde_json", @@ -1800,16 +1817,16 @@ dependencies = [ [[package]] name = "tui-markdown" -version = "0.3.1" +version = "0.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "faf7ca4141b6846fae9ca363e7cf00277978d999bf85bfd40b4f569305994c6b" +checksum = "cf47229087fc49650d095a910a56aaf10c1c64181d042d2c2ba46fc3746ff534" dependencies = [ "ansi-to-tui", - "itertools 0.13.0", + "itertools 0.14.0", "pretty_assertions", - "pulldown-cmark 0.12.2", + "pulldown-cmark", "ratatui", - "rstest", + "rstest 0.25.0", "syntect", "tracing", ] @@ -1822,7 +1839,7 @@ checksum = "ef6e1d736488ba64c2e74637089a6b9ca666ccd2eaade3ab83854f415f1d260b" dependencies = [ "indoc", "ratatui", - "rstest", + "rstest 0.23.0", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index a5c1b62..2ce97ec 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -26,7 +26,7 @@ edtui-jagged = "0.1.12" pulldown-cmark = "0.13.0" catppuccin = "2.5.1" tui-scrollview = "0.5.1" -tui-markdown = "0.3.1" +tui-markdown = "0.3.3" ansi-to-tui = "7.0.0" document-features = "0.2.11" itertools = "0.14.0"