this repo has no description
1opam-version: "2.0"
2maintainer: "Török Edwin <edwin@skylable.com>"
3authors: ["Török Edwin <edwin@skylable.com>"]
4homepage: "https://gitlab.com/edwintorok/ocaml-anycache"
5doc: "https://edwintorok.gitlab.io/ocaml-anycache/doc"
6license: "ISC"
7dev-repo: "git+https://gitlab.com/edwintorok/ocaml-anycache.git"
8bug-reports: "https://gitlab.com/edwintorok/ocaml-anycache/issues"
9depends: [
10 "ocaml" {>= "4.01.0"}
11 "ocamlfind" {build}
12 "ocamlbuild" {build}
13 "topkg" {build}
14 "alcotest" {with-test & >= "0.7.2" & < "0.8.0"}
15 "base-bytes"
16 "result"
17]
18depopts: [
19 "lwt"
20 "async"
21]
22conflicts: ["async" {>= "v0.10.0"}]
23build: [
24 [
25 "ocaml"
26 "pkg/pkg.ml"
27 "build"
28 "--pinned"
29 "%{pinned}%"
30 "--with-lwt"
31 "%{lwt:installed}%"
32 "--with-async"
33 "%{async:installed}%"
34 "--tests"
35 "false"
36 ]
37 [
38 "ocaml"
39 "pkg/pkg.ml"
40 "build"
41 "--pinned"
42 "%{pinned}%"
43 "--with-lwt"
44 "%{lwt:installed}%"
45 "--with-async"
46 "%{async:installed}%"
47 "--tests"
48 "true"
49 ] {with-test}
50 ["ocaml" "pkg/pkg.ml" "test"] {with-test}
51]
52synopsis: "Scan-resistant LRU/2Q cache"
53description: """
54anycache is a scan-resistant LRU/2Q cache.
55See the [documentation][basics] for details on the algorithm used.
56
57[basics]: https://edwintorok.gitlab.io/ocaml-anycache/doc/Anycache.html#basics
58
59anycache is distributed under the ISC license."""
60url {
61 src:
62 "https://gitlab.com/edwintorok/ocaml-anycache/uploads/78722628e5af42b59da2abe17939ff89/anycache-0.6.0.tbz"
63 checksum: [
64 "sha256=192a4ed7805c20f257e40c10df1aa030ad5acf88134b33a5b6486611b276ec01"
65 "md5=5edf38601cee4aefec6b7d6e922f208f"
66 ]
67}