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 & ocaml:version >= "4.07.0"} ] 13depends: [ 14 "ocaml" {>="4.03.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.1/lru-0.3.1.tbz" 27 checksum: [ 28 "sha256=6cbe23d27a7d5b244f869c0b88140d47f70f413a6462ef35c0009325d4b236fd" 29 "sha512=81144e258d6e488d4677ade91132401b6f8871c72aadf2f1c190c4dee918c71c5df10c4e690c5bf1ab0f364d87989d44aec3695310a3477f6473eb17c1261734" 30 ] 31} 32x-commit-hash: "cf049b90bfc5a36ad2c5fb01cf5bd04de80766e7"