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.07.0"} 14 "core_kernel" {>= "v0.12" & < "v0.13"} 15 "incremental" {>= "v0.12" & < "v0.13"} 16 "ppx_jane" {>= "v0.12" & < "v0.13"} 17 "dune" {>= "1.5.1"} 18] 19synopsis: "Helpers for incremental operations on map like data structures" 20description: " 21A set of functions for operating incrementally and efficiently on map 22like data structures. This leverages new functionality in Incremental 23along with the ability to efficiently diff map data structures using 24=Map.symmetric_diff=. 25" 26url { 27 src: 28 "https://ocaml.janestreet.com/ocaml-core/v0.12/files/incr_map-v0.12.0.tar.gz" 29 checksum: [ 30 "sha256=ffb23d662a680ee577c6c82be3fcb7036b61c083a47f9fdab3fb61f6280c9c1e" 31 "md5=11990ee43b8e56c268c46e01ed41c453" 32 ] 33}