Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/sqlx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:
run: |
rustup show active-toolchain || rustup toolchain install
rustup toolchain install nightly
- run: cargo +nightly generate-lockfile -Z direct-minimal-versions
- run: cargo +nightly generate-lockfile -Z minimal-versions
- run: cargo build --all-features

test:
Expand Down
8 changes: 8 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,11 @@ ipaddr.so

# Temporary files from running the tests locally like they would be run from CI
.sqlx

# Checking-in a `Cargo.lock` is not that helpful for a published package:
# * Requires manual `cargo update` frequently to test with new versions
# * `cargo install sqlx-cli` uses latest deps anyways unless `--locked` is passed
# * Libraries don't really need reproducible builds
# * Should also check with `-Z direct-minimal-versions` (which our CI does)
# * PRs which add/remove/update deps cause churn which results in annyoing merge conflicts
Cargo.lock
Loading
Loading