this repo has no description
1opam-version: "2.0" 2maintainer: "David Kaloper Meršinjak <david@numm.org>" 3authors: ["David Kaloper Meršinjak <david@numm.org>"] 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" 9tags: ["data-structure"] 10depends: [ 11 "ocaml" {>= "4.02.0" & < "5.0"} 12 "ocamlfind" {build} 13 "ocamlbuild" {build} 14 "topkg" {build} 15 "psq" {<"0.2.0"} 16 "alcotest" {with-test} 17] 18build: [ "ocaml" "pkg/pkg.ml" "build" "--pinned" "%{pinned}%" ] 19synopsis: "Scalable LRU caches" 20description: """ 21lru provides LRU caches for OCaml. These are size-bounded finite maps that 22remove the least-recently-used (LRU) bindings to maintain their size constraint. 23 24The library has two implementations: one is functional, the other imperative. 25 26lru is distributed under the ISC license.""" 27url { 28 src: "https://github.com/pqwy/lru/releases/download/v0.1.1/lru-0.1.1.tbz" 29 checksum: [ 30 "sha256=7f3dbf20dcd3b19aa1d950c73fe9be587d7217ed019601cd0a87b4443b581499" 31 "md5=da7b90c2c635064b5f5646ff40bca25b" 32 ] 33}