ccutils 0.4.10

Collection of utils from the [CylonCore](https://cyloncore.com) project.
Documentation
# Full documentation is available at https://gitlab.com/cyloncore/yet/-/blob/stable/docs/yet_yml.md
tasks:
  build_all:
    description: "Build all"
    command: !commands
      - cargo build --all-targets --all-features
  test:
    description: "Run all test"
    command: !commands
      - cargo test --all-features
  clippy:
    description: "Run clippy"
    command: !commands
      - cargo clippy --all-features --all-targets -- -D warnings
  doc:
    description: "Run doc"
    command: !commands
      - cargo doc --no-deps
  semver_checks:
    description: "Run semver_checks"
    command: !commands
      - cargo semver-checks

  prepush:
    description: "Run all CI checks before push"
    command: !commands
      - test
      - clippy
      - doc

  prepush_full:
    description: "Run all CI checks before push, including, semver checks"
    command: !commands
      - prepush
      - semver_checks