this repo has no description
1opam-version: "2.0"
2maintainer: "Jane Street developers"
3authors: ["Jane Street Group, LLC"]
4homepage: "https://github.com/janestreet/incr_map"
5bug-reports: "https://github.com/janestreet/incr_map/issues"
6dev-repo: "git+https://github.com/janestreet/incr_map.git"
7doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/incr_map/index.html"
8license: "MIT"
9build: [
10 ["dune" "build" "-p" name "-j" jobs]
11]
12depends: [
13 "ocaml" {>= "4.08.0"}
14 "core_kernel" {>= "v0.14" & < "v0.15"}
15 "incremental" {>= "v0.14" & < "v0.15"}
16 "ppx_jane" {>= "v0.14" & < "v0.15"}
17 "ppx_pattern_bind" {>= "v0.14" & < "v0.15"}
18 "dune" {>= "2.0.0"}
19]
20synopsis: "Helpers for incremental operations on map like data structures"
21description: "
22A set of functions for operating incrementally and efficiently on map
23like data structures. This leverages new functionality in Incremental
24along with the ability to efficiently diff map data structures using
25=Map.symmetric_diff=.
26"
27url {
28 src:
29 "https://ocaml.janestreet.com/ocaml-core/v0.14/files/incr_map-v0.14.0.tar.gz"
30 checksum: [
31 "sha256=aa9a9e28f0ad5fd3d76fb38a6b82bf8ab4561163f4a28976c8eff7558e5ce85e"
32 "md5=d4c990cd041a1376ff803959bd87165c"
33 ]
34}