Skip to content

Commit

Permalink
Increase rustc version to 1.63
Browse files Browse the repository at this point in the history
  • Loading branch information
theskim committed Nov 26, 2024
1 parent 8c6bac3 commit f8741dc
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
rust: [1.57.0, 1.67.0, stable, beta, nightly]
rust: [1.63.0, 1.67.0, stable, beta, nightly]
exclude:
- os: macos-latest
rust: 1.67.0
Expand All @@ -37,9 +37,9 @@ jobs:
toolchain: ${{ matrix.rust }}
# Add toolchain for no_std tests
- run: rustup toolchain install nightly
- name: Downgrade idna_adapter on Rust 1.57.0
- name: Downgrade idna_adapter on Rust 1.63.0
if: |
matrix.rust == '1.57.0'
matrix.rust == '1.63.0'
run: cargo update -p idna_adapter --precise 1.1.0
- name: Add `aarch64-unknown-none` toolchain for `no_std` tests
if: |
Expand All @@ -58,7 +58,7 @@ jobs:
- name: Run debugger_visualizer tests
if: |
matrix.os == 'windows-latest' &&
matrix.rust != '1.57.0' &&
matrix.rust != '1.63.0' &&
matrix.rust != '1.67.0'
run: cargo test --test debugger_visualizer --features "url/debugger_visualizer,url_debug_tests/debugger_visualizer" -- --test-threads=1 || echo "debugger test failed"
continue-on-error: true # Fails on GH actions, but not locally.
Expand Down
2 changes: 1 addition & 1 deletion idna/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ repository = "https://github.com/servo/rust-url/"
license = "MIT OR Apache-2.0"
autotests = false
edition = "2018"
rust-version = "1.57" # For panic in const context
rust-version = "1.63" # For panic in const context

[lib]
doctest = false
Expand Down
2 changes: 1 addition & 1 deletion url/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ categories = ["parser-implementations", "web-programming", "encoding", "no-std"]
license = "MIT OR Apache-2.0"
include = ["src/**/*", "LICENSE-*", "README.md", "tests/**"]
edition = "2018"
rust-version = "1.57" # From idna
rust-version = "1.63" # From libc

[dev-dependencies]
serde = { version = "1.0", features = ["derive"] }
Expand Down

0 comments on commit f8741dc

Please sign in to comment.