Skip to content

Commit 1dbc803

Browse files
committed
Raise required compiler to Rust 1.61
1 parent 0bf5d87 commit 1dbc803

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
strategy:
4545
fail-fast: false
4646
matrix:
47-
rust: [beta, 1.65.0, 1.56.1]
47+
rust: [beta, 1.65.0, 1.61.0]
4848
os: [ubuntu]
4949
include:
5050
- rust: stable
@@ -68,11 +68,12 @@ jobs:
6868
- run: cargo check --manifest-path tests/crate/Cargo.toml --no-default-features --features alloc,arbitrary_precision
6969
- run: cargo check --manifest-path tests/crate/Cargo.toml --no-default-features --features alloc,raw_value
7070
- run: cargo check --manifest-path tests/crate/Cargo.toml --features serde_json/preserve_order
71-
if: matrix.rust != '1.56.1'
71+
if: matrix.rust != '1.61.0'
7272
- run: cargo check --manifest-path tests/crate/Cargo.toml --no-default-features --features alloc,serde_json/preserve_order
73-
if: matrix.rust != '1.56.1'
73+
if: matrix.rust != '1.61.0'
7474
- name: Build without std
75-
run: cargo check --manifest-path tests/crate/Cargo.toml --target ${{matrix.target}} --no-default-features --features alloc
75+
run: cargo check --manifest-path tests/crate/Cargo.toml --target
76+
${{matrix.target}} --no-default-features --features alloc
7677
if: matrix.target
7778

7879
minimal:

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ edition = "2021"
99
keywords = ["json", "serde", "serialization"]
1010
license = "MIT OR Apache-2.0"
1111
repository = "https://github.com/serde-rs/json"
12-
rust-version = "1.56"
12+
rust-version = "1.61"
1313

1414
[dependencies]
1515
indexmap = { version = "2.2.3", optional = true }

0 commit comments

Comments
 (0)