WIP: Compatible with Rust 2024 Edition - #1498
Closed
phoepsilonix wants to merge 3 commits into
Closed
Conversation
Updated to reqwest 0.13.1 However, using native-tls to eliminate dependencies on aws-lc-rs and aws-lc-sys. https://gitlab.com/tagawa0525/raur ref commit 20388cb9cf106de34e152da002045d8c8edce2d3 Remove explicit 'ref' binding modifiers in match patterns as they are no longer allowed when the default binding mode is already a reference. This resolves compilation errors introduced by Rust 2024 edition changes to match ergonomics.
phoepsilonix
marked this pull request as ready for review
January 13, 2026 17:20
Author
|
Adjustments have been made to the features of raur.
|
Author
|
The default has been set to native-tls. |
Specifying rusttls-tls enables the default feature for reqwest. Specifying rusttls-ring enables the rustls-no-provider and ring features for reqwest. Specifying native-tls enables the native-tls feature for reqwest, typically activating OpenSSL. The default has been set to native-tls.
phoepsilonix
force-pushed
the
Rust_2024_Edition
branch
from
January 13, 2026 23:33
82013c0 to
de08c29
Compare
raur v7.1.0 PR Morganamilo#1498
Author
|
I'll wait for the merge. |
phoepsilonix
added a commit
to phoepsilonix/paru
that referenced
this pull request
Jan 14, 2026
raur v7.1.0 PR Morganamilo#1498
phoepsilonix
added a commit
to phoepsilonix/paru
that referenced
this pull request
Jan 15, 2026
raur v8.0.0 PR Morganamilo#1498
This was referenced Jan 15, 2026
Author
|
Once the raur update is adopted and the version number is updated to 8.0.0, we can support Rust 2024 Edition by updating the raur version to 8.0.0 in both paru and aur-depends. |
phoepsilonix
added a commit
to phoepsilonix/paru
that referenced
this pull request
Jan 15, 2026
Update raur v8.0.0 PR Morganamilo#1498 Morganamilo/aur-depends#24
phoepsilonix
added a commit
to phoepsilonix/paru
that referenced
this pull request
Jan 15, 2026
Update raur v8.0.0 PR Morganamilo#1498 Morganamilo/aur-depends#24
Author
phoepsilonix
added a commit
to phoepsilonix/paru
that referenced
this pull request
Jan 18, 2026
1. Updated to reqwest 0.13.1 However, using native-tls to eliminate dependencies on aws-lc-rs and aws-lc-sys. https://gitlab.com/tagawa0525/raur ref commit 20388cb9cf106de34e152da002045d8c8edce2d3 Remove explicit 'ref' binding modifiers in match patterns as they are no longer allowed when the default binding mode is already a reference. This resolves compilation errors introduced by Rust 2024 edition changes to match ergonomics. 2. Update raur v8.0.0 https://gitlab.com/davidbittner/raur/-/merge_requests/30 PR Morganamilo#1498 Morganamilo/aur-depends#24 Specifying native-tls enables the native-tls feature for reqwest, typically activating OpenSSL. Specifying rusttls-tls enables the default feature for reqwest. Specifying rusttls-ring enables the rustls-no-provider and ring features for reqwest. The default has been set to native-tls.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
https://gitlab.com/phoepsilonix/raur
Updated to reqwest 0.13.1
However, using native-tls to eliminate dependencies on aws-lc-rs and aws-lc-sys.
https://gitlab.com/davidbittner/raur/-/merge_requests/30
https://gitlab.com/tagawa0525/raur
ref commit 20388cb9cf106de34e152da002045d8c8edce2d3
Remove explicit 'ref' binding modifiers in match patterns as they are no longer allowed when the default binding mode is already a reference. This resolves compilation errors introduced by Rust 2024 edition changes to match ergonomics.
https://gitlab.com/davidbittner/raur/-/merge_requests/29
When using rustls with the reqwest package, version 0.13.1 has a dependency on aws-lc-rs. Attempts to remove this dependency resulted in increased errors during communication with the AUR, despite the build itself succeeding. Therefore, it may be advisable to halt updates to the reqwest package at version 0.12.28.
This merge request avoids the issue by using native-tls in reqwest 0.13.1.