Skip to content

fix(ed25519)!: encode ed25519 signatures raw as per RFC 8032 #343

fix(ed25519)!: encode ed25519 signatures raw as per RFC 8032

fix(ed25519)!: encode ed25519 signatures raw as per RFC 8032 #343

Workflow file for this run

name: Formatting
on:
- pull_request
jobs:
format:
strategy:
matrix:
os:
- ubuntu-latest
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.78.0
override: true
components: rustfmt, clippy
- name: Run cargo fmt
uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check