Raise required compiler to Rust 1.68

This commit is contained in:
David Tolnay 2025-12-13 19:40:48 -08:00
parent e047dfbe00
commit 04dd357b99
No known key found for this signature in database
GPG Key ID: F9BA143B95FF6D82
2 changed files with 4 additions and 4 deletions

View File

@ -44,7 +44,7 @@ jobs:
strategy:
fail-fast: false
matrix:
rust: [beta, 1.82.0, 1.65.0]
rust: [beta, 1.82.0, 1.68.0]
os: [ubuntu]
include:
- rust: stable
@ -68,9 +68,9 @@ jobs:
- run: cargo check --manifest-path tests/crate/Cargo.toml --no-default-features --features alloc,arbitrary_precision
- run: cargo check --manifest-path tests/crate/Cargo.toml --no-default-features --features alloc,raw_value
- run: cargo check --manifest-path tests/crate/Cargo.toml --features serde_json/preserve_order
if: matrix.rust != '1.65.0'
if: matrix.rust != '1.68.0'
- run: cargo check --manifest-path tests/crate/Cargo.toml --no-default-features --features alloc,serde_json/preserve_order
if: matrix.rust != '1.65.0'
if: matrix.rust != '1.68.0'
- name: Build without std
run: cargo check --manifest-path tests/crate/Cargo.toml --target
${{matrix.target}} --no-default-features --features alloc

View File

@ -9,7 +9,7 @@ edition = "2021"
keywords = ["json", "serde", "serialization"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/serde-rs/json"
rust-version = "1.65"
rust-version = "1.68"
[dependencies]
indexmap = { version = "2.2.3", optional = true }