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/" 18doc: "https://backtracking.github.io/ocamlgraph" 19bug-reports: "https://github.com/backtracking/ocamlgraph/issues/new" 20depends: [ 21 "ocaml" {>= "4.08.0"} 22 "stdlib-shims" 23 "dune" {>= "2.0"} 24 "graphics" {with-test} 25] 26build: [ 27 ["dune" "subst"] {dev} 28 [ 29 "dune" 30 "build" 31 "-p" 32 name 33 "-j" 34 jobs 35 "@install" 36 "@runtest" {with-test} 37 "@doc" {with-doc} 38 ] 39] 40dev-repo: "git+https://github.com/backtracking/ocamlgraph.git" 41url { 42 src: 43 "https://github.com/backtracking/ocamlgraph/releases/download/2.1.0/ocamlgraph-2.1.0.tbz" 44 checksum: [ 45 "sha256=0f962c36f9253df2393955af41b074b6a426b2f92a9def795b2005b57d302d65" 46 "sha512=8ee77bc1ef27bef41171b5718a73342dca8adc4b4592ff835038cd21e8c91152a0f9500b4034f664d1db7a09dab1efcc3be5d7c59260d6b33710b82a1fb2f196" 47 ] 48} 49x-commit-hash: "9ebfbb119b50d98b31f34be4983cd4f842460ea0"