this repo has no description
1opam-version: "2.0" 2maintainer: "Jane Street developers" 3authors: ["Jane Street Group, LLC"] 4homepage: "https://github.com/janestreet/ppx_pattern_bind" 5bug-reports: "https://github.com/janestreet/ppx_pattern_bind/issues" 6dev-repo: "git+https://github.com/janestreet/ppx_pattern_bind.git" 7doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/ppx_pattern_bind/index.html" 8license: "MIT" 9build: [ 10 ["dune" "build" "-p" name "-j" jobs] 11] 12depends: [ 13 "ocaml" {>= "4.07.0"} 14 "dune" {>= "1.5.1"} 15] 16synopsis: "A ppx for writing fast incremental bind nodes in a pattern match" 17description: " 18A ppx rewriter that is intended for use with Incremental. It makes it 19easier to write incremental computations using pattern-matching in a 20way that causes incremental nodes to fire as little as possible. 21" 22url { 23 src: 24 "https://ocaml.janestreet.com/ocaml-core/v0.13/files/ppx_pattern_bind-v0.13.0.tar.gz" 25 checksum: [ 26 "sha256=e0b0d4cd06d9fc9da99305d762f0502fd058ac67fb857348bea097c55f70c993" 27 "md5=fe45e8f153daea058bbfa8bfa0bb864d" 28 ] 29}