chore(tvix): bump rstest to 0.19.0
Change-Id: Ib2f5e84fdb8be1210b3507da67d4fe84f061651e Reviewed-on: https://cl.tvl.fyi/c/depot/+/11387 Tested-by: BuildkiteCI Reviewed-by: Brian Olsen <me@griff.name> Autosubmit: flokli <flokli@flokli.de> Reviewed-by: raitobezarius <tvl@lahfa.xyz>
This commit is contained in:
parent
fbf31f45ef
commit
f8800ba189
6 changed files with 12 additions and 12 deletions
8
tvix/Cargo.lock
generated
8
tvix/Cargo.lock
generated
|
@ -3099,9 +3099,9 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "rstest"
|
name = "rstest"
|
||||||
version = "0.18.2"
|
version = "0.19.0"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "97eeab2f3c0a199bc4be135c36c924b6590b88c377d416494288c14f2db30199"
|
checksum = "9d5316d2a1479eeef1ea21e7f9ddc67c191d497abc8fc3ba2467857abbb68330"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"futures",
|
"futures",
|
||||||
"futures-timer",
|
"futures-timer",
|
||||||
|
@ -3111,9 +3111,9 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "rstest_macros"
|
name = "rstest_macros"
|
||||||
version = "0.18.2"
|
version = "0.19.0"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "d428f8247852f894ee1be110b375111b586d4fa431f6c46e64ba5a0dcccbe605"
|
checksum = "04a9df72cc1f67020b0d63ad9bfe4a323e459ea7eb68e03bd9824db49f9a4c25"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"cfg-if",
|
"cfg-if",
|
||||||
"glob",
|
"glob",
|
||||||
|
|
|
@ -9663,9 +9663,9 @@ rec {
|
||||||
};
|
};
|
||||||
"rstest" = rec {
|
"rstest" = rec {
|
||||||
crateName = "rstest";
|
crateName = "rstest";
|
||||||
version = "0.18.2";
|
version = "0.19.0";
|
||||||
edition = "2021";
|
edition = "2021";
|
||||||
sha256 = "1681ncnlzhc8894idm3pqf40nndn4k4kcp0kpv29n68a7hpspvlp";
|
sha256 = "0c43nsxpm1b74jxc73xwg94is6bwqvfzkrr1xbqyx7j7l791clwx";
|
||||||
authors = [
|
authors = [
|
||||||
"Michele d'Amico <michele.damico@gmail.com>"
|
"Michele d'Amico <michele.damico@gmail.com>"
|
||||||
];
|
];
|
||||||
|
@ -9700,9 +9700,9 @@ rec {
|
||||||
};
|
};
|
||||||
"rstest_macros" = rec {
|
"rstest_macros" = rec {
|
||||||
crateName = "rstest_macros";
|
crateName = "rstest_macros";
|
||||||
version = "0.18.2";
|
version = "0.19.0";
|
||||||
edition = "2021";
|
edition = "2021";
|
||||||
sha256 = "01g6rg60snmscipc9xiili7nsn0v25sv64713gp99y2jg0jgha6l";
|
sha256 = "09ackagv8kc2v4xy0s7blyg4agij9bz9pbb31l5h4rqzrirdza84";
|
||||||
procMacro = true;
|
procMacro = true;
|
||||||
authors = [
|
authors = [
|
||||||
"Michele d'Amico <michele.damico@gmail.com>"
|
"Michele d'Amico <michele.damico@gmail.com>"
|
||||||
|
|
|
@ -81,7 +81,7 @@ tonic-build = "0.11.0"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
async-process = "2.1.0"
|
async-process = "2.1.0"
|
||||||
rstest = "0.18.2"
|
rstest = "0.19.0"
|
||||||
tempfile = "3.3.0"
|
tempfile = "3.3.0"
|
||||||
tokio-retry = "0.3.0"
|
tokio-retry = "0.3.0"
|
||||||
hex-literal = "0.4.1"
|
hex-literal = "0.4.1"
|
||||||
|
|
|
@ -42,7 +42,7 @@ data-encoding = "2.5.0"
|
||||||
criterion = "0.5"
|
criterion = "0.5"
|
||||||
itertools = "0.12.0"
|
itertools = "0.12.0"
|
||||||
pretty_assertions = "1.2.1"
|
pretty_assertions = "1.2.1"
|
||||||
rstest = "0.18.2"
|
rstest = "0.19.0"
|
||||||
tempfile = "3.3.0"
|
tempfile = "3.3.0"
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
|
|
|
@ -40,7 +40,7 @@ hex-literal = "0.4.1"
|
||||||
lazy_static = "1.4.0"
|
lazy_static = "1.4.0"
|
||||||
nix = { version = "0.27.1", features = [ "fs" ] }
|
nix = { version = "0.27.1", features = [ "fs" ] }
|
||||||
pretty_assertions = "1.4.0"
|
pretty_assertions = "1.4.0"
|
||||||
rstest = "0.18.2"
|
rstest = "0.19.0"
|
||||||
tempfile = "3.8.1"
|
tempfile = "3.8.1"
|
||||||
test-case = "3.3.1"
|
test-case = "3.3.1"
|
||||||
|
|
||||||
|
|
|
@ -58,7 +58,7 @@ tonic-build = "0.11.0"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
async-process = "2.1.0"
|
async-process = "2.1.0"
|
||||||
rstest = "0.18.2"
|
rstest = "0.19.0"
|
||||||
rstest_reuse = "0.6.0"
|
rstest_reuse = "0.6.0"
|
||||||
test-case = "3.3.1"
|
test-case = "3.3.1"
|
||||||
tempfile = "3.3.0"
|
tempfile = "3.3.0"
|
||||||
|
|
Loading…
Add table
Reference in a new issue