this repo has no description
1opam-version: "2.0" 2synopsis: "A generic graph library for OCaml" 3description: "Provides both graph data structures and graph algorithms" 4maintainer: ["jean-christophe.filliatre@cnrs.fr"] 5authors: ["Sylvain Conchon" "Jean-Christophe Filliâtre" "Julien Signoles"] 6license: "LGPL-2.1-only" 7tags: [ 8 "graph" 9 "library" 10 "algorithms" 11 "directed graph" 12 "vertice" 13 "edge" 14 "persistent" 15 "imperative" 16] 17homepage: "https://github.com/backtracking/ocamlgraph/" 18bug-reports: "https://github.com/backtracking/ocamlgraph/issues/new" 19depends: [ 20 "ocaml" {>= "4.03.0"} 21 "stdlib-shims" 22 "dune" {>= "2.0" & !with-test | >= "2.8"} 23 "graphics" {with-test} 24] 25build: [ 26 ["dune" "subst"] {dev} 27 [ 28 "dune" 29 "build" 30 "-p" 31 name 32 "-j" 33 jobs 34 "@install" 35 "@runtest" {with-test} 36 "@doc" {with-doc} 37 ] 38] 39dev-repo: "git+https://github.com/backtracking/ocamlgraph.git" 40x-commit-hash: "f97d342db06ccdbc11354303b5f225ae433f7ef3" 41url { 42 src: 43 "https://github.com/backtracking/ocamlgraph/releases/download/2.0.0/ocamlgraph-2.0.0.tbz" 44 checksum: [ 45 "sha256=20fe267797de5322088a4dfb52389b2ea051787952a8a4f6ed70fcb697482609" 46 "sha512=c4973ac03bdff52d1c8a1ed01c81e0fbe2f76486995e57ff4e4a11bcc7b1793556139d52a81ff14ee8c8de52f1b40e4bd359e60a2ae626cc630ebe8bccefb3f1" 47 ] 48}