graph_d 1.3.2

A native graph database implementation in Rust with built-in JSON support and SQLite-like simplicity
Documentation
# ═══════════════════════════════════════════════════════════════════════════════
# Dependabot Configuration
# ═══════════════════════════════════════════════════════════════════════════════
# Satisfies: RT-10 (CI validates security)
# Satisfies: S4 (Supply chain security)
#
# Automatically creates PRs to update dependencies, keeping the project
# secure and up-to-date with minimal manual intervention.
# ═══════════════════════════════════════════════════════════════════════════════

version: 2

updates:
  # ─────────────────────────────────────────────────────────────────────────────
  # Rust Dependencies (Cargo)
  # ─────────────────────────────────────────────────────────────────────────────
  - package-ecosystem: "cargo"
    directory: "/"
    schedule:
      interval: "weekly"
      day: "monday"
      time: "09:00"
      timezone: "UTC"
    open-pull-requests-limit: 10
    commit-message:
      prefix: "build(deps)"
    labels:
      - "dependencies"
      - "rust"
    # Group minor and patch updates to reduce PR noise
    groups:
      rust-minor-patch:
        patterns:
          - "*"
        update-types:
          - "minor"
          - "patch"
    # Ignore specific packages if needed
    # ignore:
    #   - dependency-name: "some-crate"
    #     update-types: ["version-update:semver-major"]

  # ─────────────────────────────────────────────────────────────────────────────
  # GitHub Actions
  # ─────────────────────────────────────────────────────────────────────────────
  - package-ecosystem: "github-actions"
    directory: "/"
    schedule:
      interval: "weekly"
      day: "monday"
      time: "09:00"
      timezone: "UTC"
    open-pull-requests-limit: 5
    commit-message:
      prefix: "ci(deps)"
    labels:
      - "dependencies"
      - "github-actions"
    groups:
      github-actions:
        patterns:
          - "*"