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.
27
28
29## Documentation
30
31Interface, [online][doc].
32
33[doc]: https://pqwy.github.io/lru/doc"""
34url {
35 src: "https://github.com/pqwy/lru/releases/download/v0.2.0/lru-0.2.0.tbz"
36 checksum: [
37 "sha256=a0d5a8622c6389679253da8a0ee3834bba42537e6e3029a57441d59c9396a72d"
38 "md5=0de0ccda69b0b07a1c8169395782617f"
39 ]
40}