this repo has no description
1opam-version: "2.0"
2maintainer: "Jane Street developers"
3authors: ["Jane Street Group, LLC"]
4homepage: "https://github.com/janestreet/incr_select"
5bug-reports: "https://github.com/janestreet/incr_select/issues"
6dev-repo: "git+https://github.com/janestreet/incr_select.git"
7doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/incr_select/index.html"
8license: "MIT"
9build: [
10 ["dune" "build" "-p" name "-j" jobs]
11]
12depends: [
13 "ocaml" {>= "5.1.0"}
14 "core" {>= "v0.17" & < "v0.18"}
15 "incremental" {>= "v0.17" & < "v0.18"}
16 "ppx_jane" {>= "v0.17" & < "v0.18"}
17 "dune" {>= "3.11.0"}
18]
19available: arch != "arm32" & arch != "x86_32"
20synopsis: "Handling of large set of incremental outputs from a single input"
21description: "
22Ability to create a large set of incremental outputs based on a single
23incremental input, where some subset of the outputs are selected to
24have specific values, and the remainder are left with a specified
25default value. The outputs are updated in time proportional to the
26number of outputs that are changed, independent of the number of
27outputs that exist.
28"
29url {
30src: "https://github.com/janestreet/incr_select/archive/refs/tags/v0.17.0.tar.gz"
31checksum: "sha256=5d194c87f06aabcb4a6df1746ef66c9996943e9385ec691439ec5d072bdd9edd"
32}