this repo has no description
1opam-version: "2.0" 2maintainer: "David Kaloper Meršinjak <dk505@cam.ac.uk>" 3authors: ["David Kaloper Meršinjak <dk505@cam.ac.uk>"] 4homepage: "https://github.com/pqwy/lru" 5doc: "https://pqwy.github.io/lru/doc" 6license: "ISC" 7dev-repo: "git+https://github.com/pqwy/lru.git" 8bug-reports: "https://github.com/pqwy/lru/issues" 9synopsis: "Scalable LRU caches" 10build: [ [ "dune" "subst" ] {dev} 11 [ "dune" "build" "-p" name "-j" jobs ] 12 [ "dune" "runtest" "-p" name ] {with-test} ] 13depends: [ 14 "ocaml" {>="5.0"} 15 "dune" {>="1.7"} 16 "psq" {="0.2.0"} 17 "qcheck-core" {with-test} 18 "qcheck-alcotest" {with-test} 19 "alcotest" {with-test} 20] 21description: """ 22Lru provides weight-bounded finite maps that can remove the least-recently-used 23(LRU) bindings in order to maintain a weight constraint. 24""" 25url { 26 src: "https://github.com/pqwy/lru/releases/download/v0.3.0/lru-v0.3.0.tbz" 27 checksum: [ 28 "sha256=84efe3e123c89e2622f973eef4483fbfc0943c27844a0e3aa2b504cc4ecb69a9" 29 "md5=ecaa8c9f5f708879140961ce35bcdba4" 30 ] 31} 32patches: ["hashtbl-seeded.patch"] 33extra-source "hashtbl-seeded.patch" { 34 src: 35 "https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/lru/hashtbl-seeded.patch" 36 checksum: 37 "sha256=c3b749d802a7f1157af5e6096d66485bd19191bc33c0abd7c715dde0be9d8b22" 38}