summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDidier Wenzek <didier.wenzek@acidalie.com>2022-07-25 14:01:29 +0200
committerGitHub <noreply@github.com>2022-07-25 14:01:29 +0200
commitf759b27c7159040681028da1d917b756cd6798e6 (patch)
treec261091a3dc7c2fd767bbfa87b367a8b4b46d976
parenta878aba623b3f13065b5da825530fd3f3222717d (diff)
parent596388a7401c9d0dbe43cce9f6dad73ef00fd2fd (diff)
Merge pull request #1294 from thin-edge/dependabot/cargo/serial_test-0.8.0
Bump serial_test from 0.6.0 to 0.8.0
-rw-r--r--Cargo.lock41
-rw-r--r--crates/common/logged_command/Cargo.toml2
-rw-r--r--crates/common/mqtt_channel/Cargo.toml2
-rw-r--r--crates/core/plugin_sm/Cargo.toml2
-rw-r--r--crates/core/tedge_agent/Cargo.toml2
-rw-r--r--crates/core/tedge_mapper/Cargo.toml2
-rw-r--r--plugins/c8y_configuration_plugin/Cargo.toml2
-rw-r--r--plugins/c8y_log_plugin/Cargo.toml2
-rw-r--r--plugins/tedge_apt_plugin/Cargo.toml2
9 files changed, 17 insertions, 40 deletions
diff --git a/Cargo.lock b/Cargo.lock
index cd409d58..d2a4264f 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1883,37 +1883,12 @@ dependencies = [
[[package]]
name = "parking_lot"
-version = "0.11.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99"
-dependencies = [
- "instant",
- "lock_api",
- "parking_lot_core 0.8.5",
-]
-
-[[package]]
-name = "parking_lot"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
dependencies = [
"lock_api",
- "parking_lot_core 0.9.3",
-]
-
-[[package]]
-name = "parking_lot_core"
-version = "0.8.5"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d76e8e1493bcac0d2766c42737f34458f1c8c50c0d23bcb24ea953affb273216"
-dependencies = [
- "cfg-if 1.0.0",
- "instant",
- "libc",
- "redox_syscall",
- "smallvec",
- "winapi",
+ "parking_lot_core",
]
[[package]]
@@ -2643,20 +2618,22 @@ dependencies = [
[[package]]
name = "serial_test"
-version = "0.6.0"
+version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e5bcc41d18f7a1d50525d080fd3e953be87c4f9f1a974f3c21798ca00d54ec15"
+checksum = "7eec42e7232e5ca56aa59d63af3c7f991fe71ee6a3ddd2d3480834cf3902b007"
dependencies = [
+ "futures",
"lazy_static",
- "parking_lot 0.11.2",
+ "log",
+ "parking_lot",
"serial_test_derive",
]
[[package]]
name = "serial_test_derive"
-version = "0.6.0"
+version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "2881bccd7d60fb32dfa3d7b3136385312f8ad75e2674aab2852867a09790cae8"
+checksum = "f1b95bb2f4f624565e8fe8140c789af7e2082c0e0561b5a82a1b678baa9703dc"
dependencies = [
"proc-macro-error",
"proc-macro2 1.0.40",
@@ -3181,7 +3158,7 @@ dependencies = [
"mio",
"num_cpus",
"once_cell",
- "parking_lot 0.12.1",
+ "parking_lot",
"pin-project-lite",
"signal-hook-registry",
"socket2",
diff --git a/crates/common/logged_command/Cargo.toml b/crates/common/logged_command/Cargo.toml
index e4ccf9a1..46a0ecfe 100644
--- a/crates/common/logged_command/Cargo.toml
+++ b/crates/common/logged_command/Cargo.toml
@@ -13,6 +13,6 @@ tokio = { version = "1.8", features = [ "fs", "io-util", "macros", "process", "r
[dev-dependencies]
anyhow = "1.0"
assert_matches = "1.5"
-serial_test = "0.6"
+serial_test = "0.8"
tedge_test_utils = { path = "../../tests/tedge_test_utils" }
test-case = "2.2"
diff --git a/crates/common/mqtt_channel/Cargo.toml b/crates/common/mqtt_channel/Cargo.toml
index 22b68aad..2cd6a833 100644
--- a/crates/common/mqtt_channel/Cargo.toml
+++ b/crates/common/mqtt_channel/Cargo.toml
@@ -18,4 +18,4 @@ tokio = { version = "1.12", features = ["rt", "time"] }
[dev-dependencies]
anyhow = "1.0"
mqtt_tests = { path = "../../tests/mqtt_tests" }
-serial_test = "0.6"
+serial_test = "0.8"
diff --git a/crates/core/plugin_sm/Cargo.toml b/crates/core/plugin_sm/Cargo.toml
index cbfae0b7..a5b8a9f7 100644
--- a/crates/core/plugin_sm/Cargo.toml
+++ b/crates/core/plugin_sm/Cargo.toml
@@ -22,7 +22,7 @@ url = "2.2"
[dev-dependencies]
anyhow = "1.0"
assert_matches = "1.5"
-serial_test = "0.6"
+serial_test = "0.8"
tempfile = "3.2"
test-case = "2.2"
diff --git a/crates/core/tedge_agent/Cargo.toml b/crates/core/tedge_agent/Cargo.toml
index 5b40aa28..2127507e 100644
--- a/crates/core/tedge_agent/Cargo.toml
+++ b/crates/core/tedge_agent/Cargo.toml
@@ -50,4 +50,4 @@ predicates = "2.1"
tedge_utils = { path = "../../common/tedge_utils"}
tedge_test_utils = { path = "../../tests/tedge_test_utils"}
tokio-test = "0.4"
-serial_test = "0.6"
+serial_test = "0.8"
diff --git a/crates/core/tedge_mapper/Cargo.toml b/crates/core/tedge_mapper/Cargo.toml
index 7359a90c..fa5447fb 100644
--- a/crates/core/tedge_mapper/Cargo.toml
+++ b/crates/core/tedge_mapper/Cargo.toml
@@ -62,7 +62,7 @@ serde = "1.0"
mockito = "0.31"
mqtt_tests = { path = "../../tests/mqtt_tests" }
serde_json = "1.0"
-serial_test = "0.6"
+serial_test = "0.8"
tedge_test_utils = { path = "../../tests/tedge_test_utils" }
test-case = "2.2"
time = { version = "0.3", features = ["macros"] }
diff --git a/plugins/c8y_configuration_plugin/Cargo.toml b/plugins/c8y_configuration_plugin/Cargo.toml
index baeba839..8b0eeb50 100644
--- a/plugins/c8y_configuration_plugin/Cargo.toml
+++ b/plugins/c8y_configuration_plugin/Cargo.toml
@@ -36,7 +36,7 @@ assert_matches = "1.5"
mockall = "0.11"
mockito = "0.31"
mqtt_tests = { path = "../../crates/tests/mqtt_tests" }
-serial_test = "0.6"
+serial_test = "0.8"
tedge_test_utils = { path = "../../crates/tests/tedge_test_utils" }
test-case = "2.2"
toml = "0.5"
diff --git a/plugins/c8y_log_plugin/Cargo.toml b/plugins/c8y_log_plugin/Cargo.toml
index 87d09a3c..884add27 100644
--- a/plugins/c8y_log_plugin/Cargo.toml
+++ b/plugins/c8y_log_plugin/Cargo.toml
@@ -41,4 +41,4 @@ filetime = "0.2"
mockall = "0.11"
tempfile = "3.3"
test-case = "2.2"
-serial_test = "0.6"
+serial_test = "0.8"
diff --git a/plugins/tedge_apt_plugin/Cargo.toml b/plugins/tedge_apt_plugin/Cargo.toml
index bcc3ebcc..74dbaac4 100644
--- a/plugins/tedge_apt_plugin/Cargo.toml
+++ b/plugins/tedge_apt_plugin/Cargo.toml
@@ -24,7 +24,7 @@ serde = { version = "1", features = ["derive"] }
anyhow = "1.0"
hamcrest2 = "0.3"
reqwest = { version = "0.11", default-features = false, features = [ "blocking", "rustls-tls" ] }
-serial_test = "0.6"
+serial_test = "0.8"
tedge_utils = { path = "../../crates/common/tedge_utils" }
test-case = "2.2"