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" {>= "5.1.0"}
14 "abstract_algebra" {>= "v0.17" & < "v0.18"}
15 "bignum" {>= "v0.17" & < "v0.18"}
16 "core" {>= "v0.17" & < "v0.18"}
17 "incremental" {>= "v0.17" & < "v0.18"}
18 "legacy_diffable" {>= "v0.17" & < "v0.18"}
19 "ppx_diff" {>= "v0.17" & < "v0.18"}
20 "ppx_jane" {>= "v0.17" & < "v0.18"}
21 "ppx_pattern_bind" {>= "v0.17" & < "v0.18"}
22 "streamable" {>= "v0.17" & < "v0.18"}
23 "dune" {>= "3.11.0"}
24]
25available: arch != "arm32" & arch != "x86_32"
26synopsis: "Helpers for incremental operations on map like data structures"
27description: "
28A set of functions for operating incrementally and efficiently on map
29like data structures. This leverages new functionality in Incremental
30along with the ability to efficiently diff map data structures using
31=Map.symmetric_diff=.
32"
33url {
34src: "https://github.com/janestreet/incr_map/archive/refs/tags/v0.17.0.tar.gz"
35checksum: "sha256=91acc784e4760af8544c4504bee1a9f6d7385eb0620f8e56392cd193a250b7d2"
36}