axum-server-timing 3.0.1

An axum layer to inject the Server-Timing HTTP header into the response.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
name: pr
on:
  workflow_dispatch:
  pull_request:
jobs:
  build:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v4
    - uses: actions-rust-lang/setup-rust-toolchain@v1
      with:
        components: rustfmt, clippy
    - name: Rustfmt Check
      uses: actions-rust-lang/rustfmt@v1
    - name: Run clippy
      run: cargo clippy --all -- -D warnings
    - name: Cargo Test
      run: cargo test