File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -133,7 +133,7 @@ get-crate-field field package=main_crate:
133133 cargo metadata --format-version 1 | jq -r ' .packages | map(select(.name == "{{ package}} ")) | first | .{{ field}} '
134134
135135# Get the minimum supported Rust version (MSRV) for the crate
136- get-msrv : (get-crate-field ' rust_version' )
136+ get-msrv package = main_crate : (get-crate-field ' rust_version' package )
137137
138138# Find the minimum supported Rust version (MSRV) using cargo-msrv extension, and update Cargo.toml
139139msrv : (cargo-install ' cargo-msrv' )
@@ -177,7 +177,7 @@ test: \
177177 cargo test --doc # do not enable --all-features here as it will cause sqlite runtime errors
178178
179179# Test documentation generation
180- test-doc: (docs '' )
180+ test-doc: (docs '' )
181181
182182# Test extension by loading it into sqlite and running SQL tests
183183test-ext: build-ext
You can’t perform that action at this time.
0 commit comments