this repo has no description
1opam-version: "2.0" 2 3synopsis: "Copies OCaml objects out of the OCaml heap" 4description: """ 5A copy of OCaml objects is moved to memory managed by malloc and free, out of 6the reach of the GC. If the objects are very large, performance can be 7improved as the traversal of large live objects does not slow the GC down. 8""" 9 10maintainer: "Nandor Licker <n@ndor.email>" 11homepage: "https://github.com/nandor/offheap" 12bug-reports: "https://github.com/nandor/offheap/issues" 13dev-repo: "git+https://github.com/nandor/offheap" 14license: "MIT" 15 16build: [ "dune" "build" "-p" name "-j" jobs ] 17 18depends: [ 19 "ocaml" {>= "4.07" & < "5.0.0"} 20 "dune" 21] 22 23url { 24 src: "https://github.com/nandor/offheap/archive/0.1.2.tar.gz" 25 checksum: [ 26 "sha256=c733401498a155c5665ecb7a776946934237af52d8496717f9b242ec4faaf942" 27 "md5=0278b913dc2cdb74231d0ca3e4196e36" 28 ] 29} 30authors: "Nandor Licker <n@ndor.email>"