diff --git a/Cargo.lock b/Cargo.lock index d23731697fa21..229f42dd631ed 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -9923,11 +9923,12 @@ dependencies = [ [[package]] name = "serial_test" -version = "3.2.0" +version = "3.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1b258109f244e1d6891bf1053a55d63a5cd4f8f4c30cf9a1280989f80e7a1fa9" +checksum = "911bd979bf1070a3f3aa7b691a3b3e9968f339ceeec89e08c280a8a22207a32f" dependencies = [ - "futures", + "futures-executor", + "futures-util", "log", "once_cell", "parking_lot", @@ -9937,9 +9938,9 @@ dependencies = [ [[package]] name = "serial_test_derive" -version = "3.2.0" +version = "3.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5d69265a08751de7844521fd15003ae0a888e035773ba05695c5c759a6f89eef" +checksum = "0a7d91949b85b0d2fb687445e448b40d322b6b3e4af6b44a29b21d9a5f33e6d9" dependencies = [ "proc-macro2 1.0.106", "quote 1.0.44", diff --git a/Cargo.toml b/Cargo.toml index 0a577cde861d9..83da1ac8eb616 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -214,7 +214,7 @@ vector-vrl-category = { path = "lib/vector-vrl/category" } vector-vrl-functions = { path = "lib/vector-vrl/functions", default-features = false } vrl = { git = "https://github.com/vectordotdev/vrl.git", branch = "main", default-features = false, features = ["arbitrary", "cli", "test", "test_framework", "stdlib-base"] } mock_instant = { version = "0.6" } -serial_test = { version = "3.2" } +serial_test = { version = "3.4" } strum = { version = "0.28", features = ["derive"] } [dependencies]