securegit 0.6.0

Zero-trust git replacement with 12 built-in security scanners, universal undo, durable backups, and a 32-tool MCP server
Documentation
stages:
  - check
  - test

variables:
  CARGO_TERM_COLOR: always

clippy:
  stage: check
  image: rust:latest
  script:
    - rustup component add clippy
    - cargo clippy -- -D warnings

fmt:
  stage: check
  image: rust:latest
  script:
    - rustup component add rustfmt
    - cargo fmt -- --check

test:
  stage: test
  image: rust:latest
  script:
    - cargo test --verbose