Skip to content
Merged
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
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,11 +84,11 @@ jobs:

- run: rustup toolchain install nightly

- run: cargo +nightly update -Zminimal-versions
- run: cargo +nightly update -Zdirect-minimal-versions

- run: cargo +nightly build --workspace
- run: cargo build --workspace

- run: cargo +nightly test --all-features --workspace
- run: cargo test --all-features --workspace

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We added half of that fix in pubgrub-rs#426 previously, I now rebased main onto upstream dev which makes this part disappear.


minimal-rust-version:
name: Minimum Rust version
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ indexmap = "2.7.0"
log = "0.4.27"
priority-queue = "2.3.1"
rustc-hash = "^2.1.1"
serde = { version = "1.0", features = ["derive"], optional = true }
serde = { version = "1.0.219", features = ["derive"], optional = true }
thiserror = "2.0"
version-ranges = { version = "0.1.0", package = "astral-version-ranges", path = "version-ranges" }

Expand Down
Loading