codebase-graph 1.1.6

Native codebaseGraph CLI and MCP server for local code knowledge graphs.
{% set name = "codebase-graph" %}
{% set version = "PUT_RELEASE_VERSION_HERE" %}

package:
  name: {{ name|lower }}
  version: {{ version }}

source:
  url: https://github.com/rabii-chaarani/codebaseGraph/archive/refs/tags/v{{ version }}.tar.gz
  sha256: PUT_RELEASE_ARCHIVE_SHA256_HERE

build:
  number: 0
  script:
    - cargo build --locked --release --bin codebase-graph
    - mkdir -p "${PREFIX}/bin"
    - cp target/release/codebase-graph "${PREFIX}/bin/codebase-graph"

requirements:
  host:
    - cargo-bundle-licenses
    - {{ compiler('rust') }}
  run:

test:
  commands:
    - codebase-graph --help
    - codebase-graph mcp --help

about:
  home: https://github.com/rabii-chaarani/codebaseGraph
  summary: Native codebase knowledge graph CLI and MCP server.
  license: MIT

extra:
  recipe-maintainers:
    - rabii-chaarani