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" {>= "4.08.0"} 14 "core_kernel" {>= "v0.13" & < "v0.14"} 15 "incremental" {>= "v0.13" & < "v0.14"} 16 "ppx_jane" {>= "v0.13" & < "v0.14"} 17 "dune" {>= "1.5.1"} 18] 19synopsis: "Handling of large set of incremental outputs from a single input" 20description: " 21Ability to create a large set of incremental outputs based on a single 22incremental input, where some subset of the outputs are selected to 23have specific values, and the remainder are left with a specified 24default value. The outputs are updated in time proportional to the 25number of outputs that are changed, independent of the number of 26outputs that exist. 27" 28url { 29 src: 30 "https://ocaml.janestreet.com/ocaml-core/v0.13/files/incr_select-v0.13.0.tar.gz" 31 checksum: [ 32 "sha256=caa9c07d4ce946e31c7868c2ab4ae0d5f2315d52ab31ee05bd30aa64c2297567" 33 "md5=faea227ece39fd048ffd53cc2439d91a" 34 ] 35}