neat 1.0.0

Crate for working with NEAT in rust
Documentation
name: CI-CD

on:
    push:
        branches: [main]
    pull_request: 

jobs:
    test:
        runs-on: ubuntu-latest
        environment: testing
        name: Unit Testing
        steps:
            - uses: actions/checkout@v4
            - name: Run cargo test
              run: cargo test --verbose --all-features -- --no-capture

    clippy:
        runs-on: ubuntu-latest
        name: Clippy Linting Checks
        steps:
            - uses: actions/checkout@v4
            - name: Run Clippy
              run: cargo clippy --all-features -- -D warnings
    
    fmt:
        runs-on: ubuntu-latest
        name: Formatting Checks
        steps:
            - uses: actions/checkout@v4
            - name: Run cargo fmt
              run: cargo fmt --check