this repo has no description
1opam-version: "2.0" 2maintainer: "martin@mjambon.com" 3authors: ["Martin Jambon"] 4homepage: "https://github.com/mjambon/dune-deps" 5bug-reports: "https://github.com/mjambon/dune-deps/issues" 6dev-repo: "git+https://github.com/mjambon/dune-deps.git" 7license: "BSD-3-Clause" 8 9build: [ 10 ["dune" "build" "-p" name "-j" jobs] 11] 12 13depends: [ 14 "cmdliner" {>= "1.0.0"} 15 "dune" {>= "2.1"} 16 "ocaml" 17 "sexplib" 18] 19 20synopsis: "Show dependency graph of a multi-component dune project" 21 22description: """ 23Dune-deps scans a dune project and produces a dependency graph 24which can be rendered with 'dot'. It is useful for projects that define 25multiple libraries or executables. It allows the developer to visualize 26the dependencies between the various components of a project. 27""" 28 29url { 30 src: "https://github.com/mjambon/dune-deps/archive/v1.3.0.tar.gz" 31 checksum: [ 32 "sha256=faf979948ad18984a7a6c94216680419749b6e6b131c5dd5f02ede0b6a8abcb3" 33 "md5=2af30a7ced43530a9b9cf04877dc5a5e" 34 ] 35}