diff --git a/Cargo.lock b/Cargo.lock index 69f02c6b..4f56486e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1979,21 +1979,21 @@ dependencies = [ [[package]] name = "rstest" -version = "0.23.0" +version = "0.24.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0a2c585be59b6b5dd66a9d2084aa1d8bd52fbdb806eafdeffb52791147862035" +checksum = "03e905296805ab93e13c1ec3a03f4b6c4f35e9498a3d5fa96dc626d22c03cd89" dependencies = [ - "futures 0.3.31", "futures-timer", + "futures-util", "rstest_macros", "rustc_version", ] [[package]] name = "rstest_macros" -version = "0.23.0" +version = "0.24.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "825ea780781b15345a146be27eaefb05085e337e869bff01b4306a4fd4a9ad5a" +checksum = "ef0053bbffce09062bee4bcc499b0fbe7a57b879f1efe088d6d8d4c7adcdef9b" dependencies = [ "cfg-if", "glob", diff --git a/Cargo.nix b/Cargo.nix index 3f6a045c..fe9c30e2 100644 --- a/Cargo.nix +++ b/Cargo.nix @@ -2153,7 +2153,7 @@ rec { "unstable" = [ "futures-core/unstable" "futures-task/unstable" ]; "write-all-vectored" = [ "io" ]; }; - resolvedDefaultFeatures = [ "alloc" "async-await" "async-await-macro" "channel" "compat" "futures-channel" "futures-io" "futures-macro" "futures-sink" "futures_01" "io" "memchr" "sink" "slab" "std" ]; + resolvedDefaultFeatures = [ "alloc" "async-await" "async-await-macro" "channel" "compat" "default" "futures-channel" "futures-io" "futures-macro" "futures-sink" "futures_01" "io" "memchr" "sink" "slab" "std" ]; }; "generic-array" = rec { crateName = "generic-array"; @@ -6171,21 +6171,21 @@ rec { }; "rstest" = rec { crateName = "rstest"; - version = "0.23.0"; + version = "0.24.0"; edition = "2021"; - sha256 = "0d90hr3i2yajzgpzvsh6p2yjzmcb3nm8884xdbb5sswvwmdmhb0a"; + sha256 = "12fd0cnd49n6dnlmygca97lkakvc9czs1hqy7khr7aq5d0lhbs83"; authors = [ "Michele d'Amico " ]; dependencies = [ { - name = "futures"; - packageId = "futures 0.3.31"; + name = "futures-timer"; + packageId = "futures-timer"; optional = true; } { - name = "futures-timer"; - packageId = "futures-timer"; + name = "futures-util"; + packageId = "futures-util"; optional = true; } { @@ -6201,7 +6201,7 @@ rec { } ]; features = { - "async-timeout" = [ "dep:futures" "dep:futures-timer" "rstest_macros/async-timeout" ]; + "async-timeout" = [ "dep:futures-timer" "dep:futures-util" "rstest_macros/async-timeout" ]; "crate-name" = [ "rstest_macros/crate-name" ]; "default" = [ "async-timeout" "crate-name" ]; }; @@ -6209,9 +6209,9 @@ rec { }; "rstest_macros" = rec { crateName = "rstest_macros"; - version = "0.23.0"; + version = "0.24.0"; edition = "2021"; - sha256 = "0nmdm7a4ysihnh0zz6w6gqrmw205zfp7xqkb2id3858vg20afpl2"; + sha256 = "16zgrnnwgm6qss4f1vzig6w5fymy1ydlkk2bxqmhc2ffzyxm607g"; procMacro = true; authors = [ "Michele d'Amico " diff --git a/Cargo.toml b/Cargo.toml index 58c332c2..c2a54195 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,7 +20,7 @@ indoc = "2.0" openssl = "0.10" product-config = { git = "https://github.com/stackabletech/product-config.git", tag = "0.7.0" } pin-project = "1.1" -rstest = "0.23" +rstest = "0.24" semver = "1.0" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0"