this repo has no description
1opam-version: "2.0"
2maintainer: "Török Edwin <edwin@etorok.net>"
3authors: ["Török Edwin <edwin@etorok.net>"]
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 "topkg-jbuilder" {build}
12 "alcotest" {with-test & >= "0.7.2"}
13 "base-bytes"
14 "anycache"
15 "core" {< "v0.13"}
16 "async_kernel" {< "v0.13"}
17 "async_unix" {< "v0.13"}
18]
19build: [
20 ["jbuilder" "subst" "-p" name] {dev}
21 ["jbuilder" "build" "-p" name "-j" jobs]
22 ["jbuilder" "runtest" "-p" name "-j" jobs] {with-test}
23]
24synopsis: "Scan-resistant LRU/2Q cache"
25description: """
26anycache is a scan-resistant LRU/2Q cache.
27See the [documentation][basics] for details on the algorithm used.
28
29[basics]: https://edwintorok.gitlab.io/ocaml-anycache/doc/Anycache.html#basics
30
31anycache is distributed under the ISC license."""
32url {
33 src:
34 "https://gitlab.com/edwintorok/ocaml-anycache/uploads/47d27fb2e3ac835994d7b546872b12cb/anycache-0.7.4.tbz"
35 checksum: [
36 "sha256=c4afd8d144d9051cbdf2cdf8091b5c616451ab64050e9e2692a0717d13576304"
37 "md5=66a9853877b97187f6eb118b9d865a9a"
38 ]
39}