Skip to content

Commit f8741dc

Browse files
committed
Increase rustc version to 1.63
1 parent 8c6bac3 commit f8741dc

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/main.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
strategy:
1616
matrix:
1717
os: [ubuntu-latest, macos-latest, windows-latest]
18-
rust: [1.57.0, 1.67.0, stable, beta, nightly]
18+
rust: [1.63.0, 1.67.0, stable, beta, nightly]
1919
exclude:
2020
- os: macos-latest
2121
rust: 1.67.0
@@ -37,9 +37,9 @@ jobs:
3737
toolchain: ${{ matrix.rust }}
3838
# Add toolchain for no_std tests
3939
- run: rustup toolchain install nightly
40-
- name: Downgrade idna_adapter on Rust 1.57.0
40+
- name: Downgrade idna_adapter on Rust 1.63.0
4141
if: |
42-
matrix.rust == '1.57.0'
42+
matrix.rust == '1.63.0'
4343
run: cargo update -p idna_adapter --precise 1.1.0
4444
- name: Add `aarch64-unknown-none` toolchain for `no_std` tests
4545
if: |
@@ -58,7 +58,7 @@ jobs:
5858
- name: Run debugger_visualizer tests
5959
if: |
6060
matrix.os == 'windows-latest' &&
61-
matrix.rust != '1.57.0' &&
61+
matrix.rust != '1.63.0' &&
6262
matrix.rust != '1.67.0'
6363
run: cargo test --test debugger_visualizer --features "url/debugger_visualizer,url_debug_tests/debugger_visualizer" -- --test-threads=1 || echo "debugger test failed"
6464
continue-on-error: true # Fails on GH actions, but not locally.

idna/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ repository = "https://github.com/servo/rust-url/"
88
license = "MIT OR Apache-2.0"
99
autotests = false
1010
edition = "2018"
11-
rust-version = "1.57" # For panic in const context
11+
rust-version = "1.63" # For panic in const context
1212

1313
[lib]
1414
doctest = false

url/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ categories = ["parser-implementations", "web-programming", "encoding", "no-std"]
1414
license = "MIT OR Apache-2.0"
1515
include = ["src/**/*", "LICENSE-*", "README.md", "tests/**"]
1616
edition = "2018"
17-
rust-version = "1.57" # From idna
17+
rust-version = "1.63" # From libc
1818

1919
[dev-dependencies]
2020
serde = { version = "1.0", features = ["derive"] }

0 commit comments

Comments
 (0)