Update dependencies (#368)

This commit is contained in:
Graham Esau 2025-01-24 22:03:59 +00:00 committed by GitHub
parent f8c1fe21b7
commit efb74969e2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 453 additions and 397 deletions

View file

@ -24,6 +24,14 @@ jobs:
fail-fast: false
steps:
- uses: actions/checkout@v4
- name: Downgrade packages for MSRV
if: matrix.rust == '1.70.0'
run: |
cargo add --dev jsonschema@0.20
cargo add --dev garde --git https://github.com/jprochazk/garde.git --rev be00ddddf8de14530ee890ccfdbaf0b13fb32852
cargo add --dev validator@0.18.1
cargo update url --precise 2.5.2
working-directory: ./schemars
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.rust }}