tempus_fugit 0.11.0

A tiny library to measure the execution time of Rust expressions, with nanosecond precision.
Documentation
name: Rust

on: [push]

jobs:
  build:

    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v1
    - name: Build
      run: cargo build --verbose
    - name: Run tests
      run: cargo test --verbose
    - name: Build (--features="enable_serde")
      run: cargo build --verbose --features="enable_serde"
    - name: Run tests (--features="enable_serde")
      run: cargo test --verbose --features="enable_serde"