-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
opam
35 lines (35 loc) · 1.27 KB
/
opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
opam-version: "2.0"
maintainer: "Jane Street developers"
authors: ["Jane Street Group, LLC"]
homepage: "https://github.com/janestreet/incr_select"
bug-reports: "https://github.com/janestreet/incr_select/issues"
dev-repo: "git+https://github.com/janestreet/incr_select.git"
doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/incr_select/index.html"
license: "MIT"
build: [
["dune" "build" "-p" name "-j" jobs]
]
depends: [
"ocaml" {>= "4.08.0"}
"core_kernel" {>= "v0.14" & < "v0.15"}
"incremental" {>= "v0.14" & < "v0.15"}
"ppx_jane" {>= "v0.14" & < "v0.15"}
"dune" {>= "2.0.0"}
]
synopsis: "Handling of large set of incremental outputs from a single input"
description: "
Ability to create a large set of incremental outputs based on a single
incremental input, where some subset of the outputs are selected to
have specific values, and the remainder are left with a specified
default value. The outputs are updated in time proportional to the
number of outputs that are changed, independent of the number of
outputs that exist.
"
url {
src:
"https://ocaml.janestreet.com/ocaml-core/v0.14/files/incr_select-v0.14.0.tar.gz"
checksum: [
"sha256=c17e196a70e52030fb595eafb23e1602dfeb0f3999061f834bae73ffbb9854e9"
"md5=a8728136499a2cd813ec09bcbd4aeb7a"
]
}