diff --git a/Cargo.lock b/Cargo.lock index 69478750..3181a746 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -524,9 +524,9 @@ dependencies = [ [[package]] name = "expect-test" -version = "1.4.1" +version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "30d9eafeadd538e68fb28016364c9732d78e420b9ff8853fa5e4058861e9f8d3" +checksum = "9e0be0a561335815e06dab7c62e50353134c796e7a6155402a64bcff66b6a5e0" dependencies = [ "dissimilar", "once_cell", diff --git a/crates/bibfmt/Cargo.toml b/crates/bibfmt/Cargo.toml index 686e871d..a712908d 100644 --- a/crates/bibfmt/Cargo.toml +++ b/crates/bibfmt/Cargo.toml @@ -15,5 +15,5 @@ line-index = { path = "../line-index" } doctest = false [dev-dependencies] -expect-test = "1.4.1" +expect-test = "1.5.0" parser = { path = "../parser" } diff --git a/crates/bibtex-utils/Cargo.toml b/crates/bibtex-utils/Cargo.toml index f0158c18..e896982c 100644 --- a/crates/bibtex-utils/Cargo.toml +++ b/crates/bibtex-utils/Cargo.toml @@ -19,5 +19,5 @@ unicode-normalization = "0.1.23" doctest = false [dev-dependencies] -expect-test = "1.4.1" +expect-test = "1.5.0" parser = { path = "../parser" } diff --git a/crates/citeproc/Cargo.toml b/crates/citeproc/Cargo.toml index ffa0058b..2edd4ad6 100644 --- a/crates/citeproc/Cargo.toml +++ b/crates/citeproc/Cargo.toml @@ -22,5 +22,5 @@ url = "2.5.0" doctest = false [dev-dependencies] -expect-test = "1.4.1" +expect-test = "1.5.0" parser = { path = "../parser" } diff --git a/crates/commands/Cargo.toml b/crates/commands/Cargo.toml index 92778c49..de36fe45 100644 --- a/crates/commands/Cargo.toml +++ b/crates/commands/Cargo.toml @@ -22,7 +22,7 @@ url = "2.5.0" [dev-dependencies] distro = { path = "../distro" } -expect-test = "1.4.1" +expect-test = "1.5.0" test-utils = { path = "../test-utils" } [lib] diff --git a/crates/completion/Cargo.toml b/crates/completion/Cargo.toml index e3c1d3e2..e28e04df 100644 --- a/crates/completion/Cargo.toml +++ b/crates/completion/Cargo.toml @@ -20,7 +20,7 @@ url = "2.5.0" [dev-dependencies] criterion = "0.5.1" distro = { path = "../distro" } -expect-test = "1.4.1" +expect-test = "1.5.0" test-utils = { path = "../test-utils" } [lib] diff --git a/crates/diagnostics/Cargo.toml b/crates/diagnostics/Cargo.toml index 241ce32d..aae4c5b1 100644 --- a/crates/diagnostics/Cargo.toml +++ b/crates/diagnostics/Cargo.toml @@ -22,7 +22,7 @@ syntax = { path = "../syntax" } url = "2.5.0" [dev-dependencies] -expect-test = "1.4.1" +expect-test = "1.5.0" test-utils = { path = "../test-utils" } [lib] diff --git a/crates/folding/Cargo.toml b/crates/folding/Cargo.toml index 500e80f5..684ddeb1 100644 --- a/crates/folding/Cargo.toml +++ b/crates/folding/Cargo.toml @@ -12,7 +12,7 @@ rowan = "0.15.15" syntax = { path = "../syntax" } [dev-dependencies] -expect-test = "1.4.1" +expect-test = "1.5.0" test-utils = { path = "../test-utils" } [lib] diff --git a/crates/highlights/Cargo.toml b/crates/highlights/Cargo.toml index a7f58d1d..785c282e 100644 --- a/crates/highlights/Cargo.toml +++ b/crates/highlights/Cargo.toml @@ -11,7 +11,7 @@ base-db = { path = "../base-db" } rowan = "0.15.15" [dev-dependencies] -expect-test = "1.4.1" +expect-test = "1.5.0" test-utils = { path = "../test-utils" } [lib] diff --git a/crates/hover/Cargo.toml b/crates/hover/Cargo.toml index ebc2522c..946ed734 100644 --- a/crates/hover/Cargo.toml +++ b/crates/hover/Cargo.toml @@ -15,7 +15,7 @@ rowan = "0.15.15" syntax = { path = "../syntax" } [dev-dependencies] -expect-test = "1.4.1" +expect-test = "1.5.0" test-utils = { path = "../test-utils" } [lib] diff --git a/crates/inlay-hints/Cargo.toml b/crates/inlay-hints/Cargo.toml index 5547f564..ede4ca61 100644 --- a/crates/inlay-hints/Cargo.toml +++ b/crates/inlay-hints/Cargo.toml @@ -13,7 +13,7 @@ rustc-hash = "1.1.0" [dev-dependencies] test-utils = { path = "../test-utils" } -expect-test = "1.4.1" +expect-test = "1.5.0" [lib] doctest = false diff --git a/crates/links/Cargo.toml b/crates/links/Cargo.toml index d3df0c95..74378483 100644 --- a/crates/links/Cargo.toml +++ b/crates/links/Cargo.toml @@ -11,7 +11,7 @@ base-db = { path = "../base-db" } [dev-dependencies] test-utils = { path = "../test-utils" } -expect-test = "1.4.1" +expect-test = "1.5.0" [lib] doctest = false diff --git a/crates/parser/Cargo.toml b/crates/parser/Cargo.toml index 6ba414cb..509de0d7 100644 --- a/crates/parser/Cargo.toml +++ b/crates/parser/Cargo.toml @@ -16,7 +16,7 @@ syntax = { path = "../syntax" } tempfile = "3.10.1" [dev-dependencies] -expect-test = "1.4.1" +expect-test = "1.5.0" [lib] doctest = false diff --git a/crates/symbols/Cargo.toml b/crates/symbols/Cargo.toml index ce2ef1a2..c1c72a37 100644 --- a/crates/symbols/Cargo.toml +++ b/crates/symbols/Cargo.toml @@ -22,4 +22,4 @@ url = "2.5.0" [dev-dependencies] regex = "1.10.4" test-utils = { path = "../test-utils" } -expect-test = "1.4.1" +expect-test = "1.5.0"