We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b7ef74 commit 161f4c3Copy full SHA for 161f4c3
xtask/src/main.rs
@@ -64,7 +64,7 @@ fn update_msrv_lock() -> Result {
64
65
pin_msrv_versions(dry_run, &sh, &cargo, &lockfile)?;
66
67
- cmd!(sh, "{cargo} +{msrv} test --no-run --all-features").run_if(dry_run)?;
+ cmd!(sh, "cargo +{msrv} test --no-run --all-features").run_if(dry_run)?;
68
69
cmd!(sh, "cp {lockfile} {ci_dir}/Cargo.lock.msrv").run_if(dry_run)?;
70
@@ -86,7 +86,7 @@ fn update_min_lock() -> Result {
86
87
cmd!(
88
sh,
89
- "{cargo} +nightly -Z minimal-versions test --no-run --all-features"
+ "cargo +nightly -Z minimal-versions test --package neo4rs --no-run --all-features"
90
)
91
.env("RUST_LOG", "debug")
92
.run_if(dry_run)?;
0 commit comments