summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>2023-07-17 14:05:53 +0000
committerTim Oram <dev@mitmaro.ca>2023-07-17 11:49:02 -0230
commit1c8d060d1a0e3bb8f7b47e579aa6780f306fa8ca (patch)
tree002f4ad0c79ea473f84c151e2fdc7c716314da19
parent838ddbbde7a23f0f2d6280a6da60b93468055e12 (diff)
Bump rstest from 0.16.0 to 0.18.1
Bumps [rstest](https://github.com/la10736/rstest) from 0.16.0 to 0.18.1. - [Release notes](https://github.com/la10736/rstest/releases) - [Changelog](https://github.com/la10736/rstest/blob/master/CHANGELOG.md) - [Commits](https://github.com/la10736/rstest/compare/0.16.0...v0.18.1) --- updated-dependencies: - dependency-name: rstest dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
-rw-r--r--Cargo.lock63
-rw-r--r--src/config/Cargo.toml2
-rw-r--r--src/core/Cargo.toml2
-rw-r--r--src/display/Cargo.toml2
-rw-r--r--src/git/Cargo.toml2
-rw-r--r--src/input/Cargo.toml2
-rw-r--r--src/todo_file/Cargo.toml2
7 files changed, 64 insertions, 11 deletions
diff --git a/Cargo.lock b/Cargo.lock
index ca3147e..9930660 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -3,6 +3,15 @@
version = 3
[[package]]
+name = "aho-corasick"
+version = "1.0.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "43f6cb1bf222025340178f382c426f13757b2960e89779dfcb319c32542a5a41"
+dependencies = [
+ "memchr",
+]
+
+[[package]]
name = "android_system_properties"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -477,6 +486,12 @@ dependencies = [
]
[[package]]
+name = "glob"
+version = "0.3.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
+
+[[package]]
name = "hashbrown"
version = "0.12.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -849,10 +864,45 @@ dependencies = [
]
[[package]]
+name = "regex"
+version = "1.9.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b2eae68fc220f7cf2532e4494aded17545fce192d59cd996e0fe7887f4ceb575"
+dependencies = [
+ "aho-corasick",
+ "memchr",
+ "regex-automata",
+ "regex-syntax",
+]
+
+[[package]]
+name = "regex-automata"
+version = "0.3.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "39354c10dd07468c2e73926b23bb9c2caca74c5501e38a35da70406f1d923310"
+dependencies = [
+ "aho-corasick",
+ "memchr",
+ "regex-syntax",
+]
+
+[[package]]
+name = "regex-syntax"
+version = "0.7.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e5ea92a5b6195c6ef2a0295ea818b312502c6fc94dde986c5553242e18fd4ce2"
+
+[[package]]
+name = "relative-path"
+version = "1.8.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "4bf2521270932c3c7bed1a59151222bd7643c79310f2916f01925e1e16255698"
+
+[[package]]
name = "rstest"
-version = "0.16.0"
+version = "0.18.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b07f2d176c472198ec1e6551dc7da28f1c089652f66a7b722676c2238ebc0edf"
+checksum = "2b96577ca10cb3eade7b337eb46520108a67ca2818a24d0b63f41fd62bc9651c"
dependencies = [
"futures",
"futures-timer",
@@ -862,15 +912,18 @@ dependencies = [
[[package]]
name = "rstest_macros"
-version = "0.16.0"
+version = "0.18.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "7229b505ae0706e64f37ffc54a9c163e11022a6636d58fe1f3f52018257ff9f7"
+checksum = "225e674cf31712b8bb15fdbca3ec0c1b9d825c5a24407ff2b7e005fb6a29ba03"
dependencies = [
"cfg-if",
+ "glob",
"proc-macro2",
"quote",
+ "regex",
+ "relative-path",
"rustc_version",
- "syn 1.0.104",
+ "syn 2.0.26",
"unicode-ident",
]
diff --git a/src/config/Cargo.toml b/src/config/Cargo.toml
index f8b9e63..7ce1e4a 100644
--- a/src/config/Cargo.toml
+++ b/src/config/Cargo.toml
@@ -22,7 +22,7 @@ proc-macro2 = "1.0.66" # TODO: remove override of indirect dependency
[dev-dependencies]
claim = { git = "https://github.com/Turbo87/rust-claim.git", rev = "23892a3" }
lazy_static = "1.4.0"
-rstest = "0.16.0"
+rstest = "0.18.1"
serial_test = "2.0.0"
tempfile = "3.6.0"
girt-testutils = {version = "0.1.0", path = "../testutils"}
diff --git a/src/core/Cargo.toml b/src/core/Cargo.toml
index 419b918..65ba89b 100644
--- a/src/core/Cargo.toml
+++ b/src/core/Cargo.toml
@@ -36,7 +36,7 @@ girt-view = {version = "2.2.0", path = "../../src/view"}
[dev-dependencies]
claim = { git = "https://github.com/Turbo87/rust-claim.git", rev = "23892a3" }
pretty_assertions = "1.3.0"
-rstest = "0.16.0"
+rstest = "0.18.1"
serial_test = "2.0.0"
girt-view = {version = "2.2.0", path = "../../src/view", features = ["testutils"]}
diff --git a/src/display/Cargo.toml b/src/display/Cargo.toml
index b494f74..544f067 100644
--- a/src/display/Cargo.toml
+++ b/src/display/Cargo.toml
@@ -20,7 +20,7 @@ thiserror = "1.0.43"
girt-config = {version = "2.2.0", path = "../config"}
[dev-dependencies]
-rstest = "0.16.0"
+rstest = "0.18.1"
serial_test = "2.0.0"
[build-dependencies]
diff --git a/src/git/Cargo.toml b/src/git/Cargo.toml
index 1e75274..a115a24 100644
--- a/src/git/Cargo.toml
+++ b/src/git/Cargo.toml
@@ -29,7 +29,7 @@ features = []
[dev-dependencies]
claim = { git = "https://github.com/Turbo87/rust-claim.git", rev = "23892a3" }
pretty_assertions = "1.3.0"
-rstest = "0.16.0"
+rstest = "0.18.1"
serial_test = "2.0.0"
girt-testutils = {version = "0.1.0", path = "../testutils"}
diff --git a/src/input/Cargo.toml b/src/input/Cargo.toml
index 76075f0..c2660a4 100644
--- a/src/input/Cargo.toml
+++ b/src/input/Cargo.toml
@@ -25,7 +25,7 @@ girt-config = {version = "2.2.0", path = "../config"}
girt-runtime = {version = "0.1.0", path = "../runtime"}
[dev-dependencies]
-rstest = "0.16.0"
+rstest = "0.18.1"
lazy_static = "1.4.0"
serial_test = "2.0.0"
diff --git a/src/todo_file/Cargo.toml b/src/todo_file/Cargo.toml
index 023347b..83766ce 100644
--- a/src/todo_file/Cargo.toml
+++ b/src/todo_file/Cargo.toml
@@ -22,7 +22,7 @@ version-track = "0.1.0"
[dev-dependencies]
claim = { git = "https://github.com/Turbo87/rust-claim.git", rev = "23892a3" }
pretty_assertions = "1.3.0"
-rstest = "0.16.0"
+rstest = "0.18.1"
tempfile = "3.6.0"
girt-testutils = {version = "0.1.0", path = "../testutils"}