moxcms 0.9.0

Simple Color Management in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
name: Nightly Fuzzing

on:
  schedule:
    - cron: '0 2 * * *' # every day at 2:00 UTC
  workflow_dispatch:

jobs:
  fuzz_reader:
    name: Fuzzing Reader
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v6
      - uses: dtolnay/rust-toolchain@nightly
      - run: cargo install cargo-fuzz
      - run: cargo fuzz run safe_read --no-default-features -- -max_total_time=300 -max_len=512000
      - run: cargo fuzz run safe_read_create --no-default-features -- -max_total_time=300 -max_len=512000