set_of 0.0.3

I consent to the transfer of this crate to the first person who asks help@crates.io for it.
Documentation
name: Rust

on:
  push:
    branches: [ "master" ]
  pull_request:
    branches: [ "master" ]

env:
  CARGO_TERM_COLOR: always

jobs:
  build:

    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v3
    - name: Set up Rust
      uses: actions-rs/toolchain@v1
      with:
        toolchain: stable
        profile: minimal
        override: true
    - name: Build
      run: cargo build --verbose
    - name: Run std tests
      run: cargo test --verbose --tests
    - name: Run no_std tests
      run: rustup target add x86_64-unknown-linux-gnu && cd test_no_std && cargo run
    - name: Run feature flags tests
      run: cargo test --tests --features tracing && cargo test --tests --features log