Skip to content

Commit 7326ca7

Browse files
committed
ci updates
1 parent 6fc31e0 commit 7326ca7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

justfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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
139139
msrv: (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
183183
test-ext: build-ext

0 commit comments

Comments
 (0)