this repo has no description
1opam-version: "2.0" 2synopsis: "Self-adjusting computations" 3description: """ 4This is a small, self-contained library for self-adjusting (incremental) computations. 5It was written for OCurrent, but can be used separately too. 6 7It is similar to Jane Street's incremental library, but much smaller and 8has no external dependencies. 9 10It is also similar to the react library, but the results do not depend on the 11behaviour of the garbage collector. In particular, functions stop being called 12as soon as they are no longer needed. 13""" 14maintainer: "talex5@gmail.com" 15authors: "talex5@gmail.com" 16homepage: "https://github.com/ocurrent/ocurrent" 17bug-reports: "https://github.com/ocurrent/ocurrent/issues" 18dev-repo: "git+https://github.com/ocurrent/ocurrent.git" 19doc: "https://ocurrent.github.io/ocurrent/" 20build: [ 21 ["dune" "build" "-p" name "-j" jobs] 22 ["dune" "runtest" "-p" name "-j" jobs] {with-test} 23] 24depends: [ 25 "ocaml" {>= "4.08.0"} 26 "dune" {>= "1.9"} 27 "alcotest" {with-test} 28] 29url { 30 src: 31 "https://github.com/ocurrent/ocurrent/releases/download/v0.2/current-v0.2.tbz" 32 checksum: [ 33 "sha256=dd5475e7b1e21562cee10f97db326d647902bc85dad9f0704c112754302f7819" 34 "sha512=c8783e9217e901342b15fe27b50289f33cd6530386afc71332a694664676e203b4b8e730aec7882e7bd6abcfe82b9832f9571638d6f90edbf4bc8f67ad1356f6" 35 ] 36}