Skip to content

Update toml requirement from 0.5.9 to 0.9.10 #162

Update toml requirement from 0.5.9 to 0.9.10

Update toml requirement from 0.5.9 to 0.9.10 #162

Workflow file for this run

name: Rust
on: [push, pull_request]
jobs:
formatting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- run: cargo fmt --all -- --check
clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- run: cargo clippy --all --all-targets -- -Dwarnings
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Test all-targets
run: cargo test --workspace --all-targets
- name: Test docs
run: cargo test --workspace --doc
docs:
runs-on: ubuntu-latest
name: Build-test docs
steps:
- uses: actions/checkout@v5
- name: Document all crates
env:
RUSTDOCFLAGS: -Dwarnings
run: cargo doc --all --all-features --no-deps --document-private-items