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.12"}
13 "dune" {>= "3.0"}
14 "odoc" {with-doc}
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://git.zapashcanon.fr/zapashcanon/memo.git"
31
32url {
33 src: "https://git.zapashcanon.fr/zapashcanon/memo/archive/0.2.tar.gz"
34 checksum: [
35 "sha256=a6a16c1c52ab21910822317d948792022016fc6d1ef10498c23b94839154a992"
36 "sha512=31d060819aacdb39a77e2b24a0bd383c2b801c013f21a2b3141234a53fad6ad4bc2f816397bd2782175ac582b94824e7b94d888518ba9a682e6280b7a08507ab"
37 ]
38}