this repo has no description
1opam-version: "2.0"
2synopsis: "Memoïzation library"
3description:
4 "memo is an OCaml library for memoïzation. It provides easy ways to memoïze a function, in a type-safe and modular way and the ability to get forgetful memoïzation."
5maintainer: ["Léo Andrès <contact@ndrs.fr>"]
6authors: ["Léo Andrès <contact@ndrs.fr>"]
7license: "ISC"
8homepage: "https://git.zapashcanon.fr/zapashcanon/memo"
9doc: "https://doc.zapashcanon.fr/memo/"
10bug-reports: "https://git.zapashcanon.fr/zapashcanon/memo/issues"
11depends: [
12 "ocaml" {>= "4.05.0"}
13 "dune" {>= "1.11.0"}
14 "bisect_ppx" {>= "1.4.1" & < "2.6.0"}
15]
16build: [
17 ["dune" "subst"] {dev}
18 [
19 "dune"
20 "build"
21 "-p"
22 name
23 "-j"
24 jobs
25 "@install"
26 "@runtest" {with-test}
27 "@doc" {with-doc}
28 ]
29]
30dev-repo: "git+https://git.zapashcanon.fr/zapashcanon/memo.git"
31url {
32 src: "https://fs.zapashcanon.fr/archive/memo/memo-0.0.1.tbz"
33 checksum: [
34 "sha256=f8f614e8b20b6b013ac02d8b7feb6038d93c6e1a41168c6c6c042b66072bcd37"
35 "sha512=5002fb536062464eccdc05d281469f0cebcb64429f07b7241bca9f56a18c40e5c7b279a55b77a6a1f1793d3d72f89f7a906c920c514d049553e12ae606d69e1d"
36 ]
37}