Skip to content

Update Cargo.toml

Update Cargo.toml #313

Workflow file for this run

name: Rust format
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- run: rustup component add clippy
- run: rustup component add rustfmt
- run: cargo fmt -- --check && cargo clippy -- -Dwarnings