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."""
13maintainer: "talex5@gmail.com"
14authors: "talex5@gmail.com"
15homepage: "https://github.com/ocurrent/current_incr"
16doc: "https://ocurrent.github.io/current_incr/"
17bug-reports: "https://github.com/ocurrent/current_incr/issues"
18depends: [
19 "ocaml" {>= "4.12.0"}
20 "dune" {>= "2.8"}
21 "alcotest" {with-test}
22 "crowbar" {with-test}
23 "mdx" {>= "1.10.0" & with-test}
24]
25build: [
26 ["dune" "build" "-p" name "-j" jobs]
27 ["dune" "runtest" "-p" name "-j" jobs] {with-test}
28]
29dev-repo: "git+https://github.com/ocurrent/current_incr.git"
30license: "Apache-2.0"
31url {
32 src:
33 "https://github.com/ocurrent/current_incr/releases/download/0.6.1/current_incr-0.6.1.tbz"
34 checksum: [
35 "sha256=86648df3a0940369830f819aa0049d09a6c4f642278cf6d38cd87fcca0f95cc1"
36 "sha512=7e30d310897bc4d067b4021c9453b74d505db5c5d8c429254da238faa40f93da4370a11f7e29973371baca3fa8d55693a052bf4679018ca97bc4aa0cfb11fec6"
37 ]
38}
39x-commit-hash: "87b30560bf66f9eb7b0a4c97a5d7ac3a8bdcb6ca"