Skip to content

Commit bb8aa63

Browse files
committed
Fix MSRV build
1 parent 9fefc4e commit bb8aa63

3 files changed

Lines changed: 122 additions & 5 deletions

File tree

.github/workflows/main.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ jobs:
5252

5353
test:
5454
name: Test
55+
needs: [build, format, clippy]
5556
strategy:
5657
fail-fast: false
5758
matrix:
@@ -83,6 +84,7 @@ jobs:
8384

8485
docs:
8586
name: Documentation
87+
needs: [build, format, clippy]
8688
runs-on: ubuntu-latest
8789
steps:
8890
- uses: actions/checkout@v4
@@ -100,4 +102,4 @@ jobs:
100102
with:
101103
name: documentation
102104
path: target/doc/
103-
retention-days: 1
105+
retention-days: 1

Cargo.lock

Lines changed: 118 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ serde = "1"
2929
serde_json = { version = "1", features = ["preserve_order"] }
3030
rayon = "1.11"
3131
mimalloc = { version = ">=0.1.40, <0.2.0", default-features = false, optional = true }
32-
json5 = "1.3"
32+
json5 = "0.4"
3333

3434
[dev-dependencies]
3535
tempfile = "3"

0 commit comments

Comments
 (0)