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 "result" 15 "lru" {= "0.2.0"} 16] 17build: [ 18 ["jbuilder" "subst" "-p" name] {dev} 19 ["jbuilder" "build" "-p" name "-j" jobs] 20 ["jbuilder" "runtest" "-p" name "-j" jobs] {with-test} 21] 22synopsis: "Scan-resistant LRU/2Q cache" 23description: """ 24anycache is a scan-resistant LRU/2Q cache. 25See the [documentation][basics] for details on the algorithm used. 26 27[basics]: https://edwintorok.gitlab.io/ocaml-anycache/doc/Anycache.html#basics 28 29anycache is distributed under the ISC license.""" 30url { 31 src: 32 "https://gitlab.com/edwintorok/ocaml-anycache/uploads/47d27fb2e3ac835994d7b546872b12cb/anycache-0.7.4.tbz" 33 checksum: [ 34 "sha256=c4afd8d144d9051cbdf2cdf8091b5c616451ab64050e9e2692a0717d13576304" 35 "md5=66a9853877b97187f6eb118b9d865a9a" 36 ] 37}