Skip to content

Commit a73df2b

Browse files
committed
Bump rust version
Signed-off-by: Heinz N. Gies <heinz@licenser.net>
1 parent 6cf8bc1 commit a73df2b

File tree

2 files changed

+10
-11
lines changed

2 files changed

+10
-11
lines changed

.github/workflows/quality.yaml

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ on:
66
branches:
77
- main
88

9-
109
jobs:
1110
clippy_check:
1211
strategy:
@@ -19,48 +18,48 @@ jobs:
1918
steps:
2019
- uses: actions/checkout@v3
2120

22-
- uses: dtolnay/rust-toolchain@1.72 # do clippy chekcs with the minimum supported version
21+
- uses: dtolnay/rust-toolchain@1.80 # do clippy chekcs with the minimum supported version
2322
with:
2423
components: rustfmt, clippy
2524

2625
- name: Validate cargo format
2726
run: cargo fmt -- --check
2827

29-
- name: Run tests
28+
- name: Run tests
3029
env:
3130
RUSTFLAGS: "-C target-cpu=native ${{ matrix.rustflags }}"
3231
run: cargo clippy
33-
32+
3433
- name: Run tests (no-default-features)
3534
env:
3635
RUSTFLAGS: "-C target-cpu=native ${{ matrix.rustflags }}"
3736
run: cargo clippy
38-
37+
3938
- name: Run tests (value-no-dup-keys)
4039
env:
4140
RUSTFLAGS: "-C target-cpu=native ${{ matrix.rustflags }}"
4241
run: cargo clippy --features value-no-dup-keys
43-
42+
4443
- name: Run tests (known-key)
4544
env:
4645
RUSTFLAGS: "-C target-cpu=native ${{ matrix.rustflags }}"
4746
run: cargo clippy --features known-key
48-
47+
4948
- name: Run tests (128bit)
5049
env:
5150
RUSTFLAGS: "-C target-cpu=native ${{ matrix.rustflags }}"
5251
run: cargo clippy --features 128bit
53-
52+
5453
- name: Run tests (beef)
5554
env:
5655
RUSTFLAGS: "-C target-cpu=native ${{ matrix.rustflags }}"
5756
run: cargo clippy --features beef
58-
57+
5958
- name: Run tests (arraybackend)
6059
env:
6160
RUSTFLAGS: "-C target-cpu=native ${{ matrix.rustflags }}"
6261
run: cargo clippy --features arraybackend
63-
62+
6463
- name: Run tests (approx-number-parsing)
6564
env:
6665
RUSTFLAGS: "-C target-cpu=native ${{ matrix.rustflags }}"

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ description = "High performance JSON parser based on a port of simdjson"
99
repository = "https://github.com/simd-lite/simd-json"
1010
readme = "README.md"
1111
documentation = "https://docs.rs/simd-json"
12-
rust-version = "1.64"
12+
rust-version = "1.80"
1313

1414
[target.'cfg(target_family = "wasm")'.dependencies]
1515
getrandom = { version = "0.2", features = ["js"] }

0 commit comments

Comments
 (0)