Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix msrv: Run msrv checks with minimal versions #1541

Merged
merged 3 commits into from
Aug 24, 2024
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
3 changes: 2 additions & 1 deletion .github/workflows/msrv.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ jobs:
- uses: actions/checkout@v4
- uses: extractions/setup-just@v2
- run: |
rustup toolchain install ${{ env.rust_version }} --profile minimal --no-self-update
rustup toolchain install ${{ env.rust_version }} nightly --profile minimal --no-self-update
rustup default ${{ env.rust_version }}
cargo +nightly update -Zminimal-versions
- run: just ci-check-msrv
12 changes: 6 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion gix-archive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ gix-object = { version = "^0.44.0", path = "../gix-object" }
gix-path = { version = "^0.10.10", path = "../gix-path", optional = true }
gix-date = { version = "^0.9.0", path = "../gix-date" }

flate2 = { version = "1.0.26", optional = true }
flate2 = { version = "1.0.33", optional = true }
zip = { version = "2.1.0", optional = true, default-features = false, features = ["deflate"] }
jiff = { version = "0.1.2", default-features = false, features = ["std"] }

Expand Down
2 changes: 1 addition & 1 deletion gix-features/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ bytesize = { version = "1.0.1", optional = true }
bytes = { version = "1.0.0", optional = true }

# zlib module
flate2 = { version = "1.0.25", optional = true, default-features = false }
flate2 = { version = "1.0.33", optional = true, default-features = false }
thiserror = { version = "1.0.38", optional = true }

once_cell = { version = "1.13.0", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion gix-url/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ gix-path = { version = "^0.10.10", path = "../gix-path" }

serde = { version = "1.0.114", optional = true, default-features = false, features = ["std", "derive"] }
thiserror = "1.0.32"
url = "2.5.1"
url = "2.5.2"
bstr = { version = "1.3.0", default-features = false, features = ["std"] }
home = "0.5.5"

Expand Down
Loading