Skip to content

Commit

Permalink
upgrade dev-dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Byron committed Jun 15, 2024
1 parent bff28af commit d8cbd37
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@ include = ["src/*.rs", "LICENSE-APACHE", "README.md", "CHANGELOG.md"]
pulldown-cmark = { version = "0.11.0", default-features = false }

[dev-dependencies]
indoc = "1.0.0"
pretty_assertions = "0.7.1"
indoc = "2.0.5"
pretty_assertions = "1.4.0"
6 changes: 3 additions & 3 deletions tests/fmt.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
#[macro_use]
extern crate indoc;

use pulldown_cmark::{Alignment, CodeBlockKind, Event, LinkType, Options, Parser, Tag, TagEnd};
use pulldown_cmark_to_cmark::{cmark, cmark_resume, cmark_resume_with_options, Options as CmarkToCmarkOptions, State};

Expand Down Expand Up @@ -495,6 +492,7 @@ println!("Hello, world!");

mod blockquote {
use super::{assert_events_eq_both, fmte, fmtes, fmts_both, Event, State, Tag, TagEnd};
use indoc::indoc;

#[test]
fn it_pops_padding_on_quote_end() {
Expand Down Expand Up @@ -842,6 +840,7 @@ mod codeblock {
}

mod table {
use indoc::indoc;
use pretty_assertions::assert_eq;
use pulldown_cmark_to_cmark::Alignment;

Expand Down Expand Up @@ -1101,6 +1100,7 @@ mod escapes {

mod list {
use super::{fmtes, fmts_both, fmts_with_options, CmarkToCmarkOptions, Event, State, TagEnd};
use indoc::indoc;

#[test]
fn it_pops_one_item_from_the_lists_stack_for_each_end_list() {
Expand Down

0 comments on commit d8cbd37

Please sign in to comment.