From 57b7e110d8b7854eedf520fc9bf3333588e0f1a5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 25 Nov 2024 06:45:20 +0000 Subject: [PATCH] Update dir-test requirement from 0.3 to 0.4 Updates the requirements on [dir-test](https://github.com/fe-lang/dir-test) to permit the latest version. - [Release notes](https://github.com/fe-lang/dir-test/releases) - [Commits](https://github.com/fe-lang/dir-test/compare/v0.3.0...v0.4.0) --- updated-dependencies: - dependency-name: dir-test dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- crates/interpreter/Cargo.toml | 2 +- crates/parser/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/interpreter/Cargo.toml b/crates/interpreter/Cargo.toml index 5ff0bbeb..a9124850 100644 --- a/crates/interpreter/Cargo.toml +++ b/crates/interpreter/Cargo.toml @@ -20,6 +20,6 @@ sonatina-ir = { path = "../ir", version = "0.0.3-alpha" } [dev-dependencies] sonatina-parser = { path = "../parser" } -dir-test = "0.3" +dir-test = "0.4" regex = "1.11" once_cell = "1.20" diff --git a/crates/parser/Cargo.toml b/crates/parser/Cargo.toml index 8051c27f..5e7b929d 100644 --- a/crates/parser/Cargo.toml +++ b/crates/parser/Cargo.toml @@ -29,6 +29,6 @@ derive_more = { version = "=1.0.0", default-features = false, features = [ smallvec = "1.13.2" [dev-dependencies] -dir-test = "0.3" +dir-test = "0.4" insta = { version = "1.41" } indenter = "0.3.3"