this repo has no description
1opam-version: "2.0" 2synopsis: "Choice monad, for easy backtracking" 3maintainer: "simon.cruanes.2007@m4x.org" 4authors: "Simon Cruanes <simon.cruanes.2007@m4x.org>" 5homepage: "https://github.com/c-cube/choice/" 6bug-reports: "https://github.com/c-cube/choice/issues" 7depends: [ 8 "dune" {>= "1.1"} 9 "ocaml" {>= "4.03.0"} 10 "seq" 11 "ounit" {with-test} 12 "gen" {with-test} 13 "odoc" {with-doc} 14] 15build: [ 16 ["dune" "build" "@install" "-p" name "-j" jobs] 17 ["dune" "build" "@doc" "-p" name "-j" jobs] {with-doc} 18 ["dune" "runtest" "-p" name "-j" jobs] {with-test} 19] 20dev-repo: "git+https://github.com/c-cube/choice.git" 21url { 22 src: "https://github.com/c-cube/choice/archive/v0.4.tar.gz" 23 checksum: [ 24 "md5=90f12307c085deba053997bded3a4b84" 25 "sha512=9078b75ba63ae5afcbea80e7b9838c721b69e95190f787f399e18dfbd39735abdf0c8b22cfae34c6801475f542d530bee5f0665284c4df9a4b14c4fb638a3188" 26 ] 27}