this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #26776 from zapashcanon/memo.0.2

memo.0.2

authored by

Marcello Seri and committed by
GitHub
4ffa0042 87a4585a

+38
+38
packages/memo/memo.0.2/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "Memoïzation library" 3 + description: 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." 5 + maintainer: ["Léo Andrès <contact@ndrs.fr>"] 6 + authors: ["Léo Andrès <contact@ndrs.fr>"] 7 + license: "ISC" 8 + homepage: "https://git.zapashcanon.fr/zapashcanon/memo" 9 + doc: "https://doc.zapashcanon.fr/memo/" 10 + bug-reports: "https://git.zapashcanon.fr/zapashcanon/memo/issues" 11 + depends: [ 12 + "ocaml" {>= "4.12"} 13 + "dune" {>= "3.0"} 14 + "odoc" {with-doc} 15 + ] 16 + build: [ 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 + ] 30 + dev-repo: "git://git.zapashcanon.fr/zapashcanon/memo.git" 31 + 32 + url { 33 + src: "https://git.zapashcanon.fr/zapashcanon/memo/archive/0.2.tar.gz" 34 + checksum: [ 35 + "sha256=a6a16c1c52ab21910822317d948792022016fc6d1ef10498c23b94839154a992" 36 + "sha512=31d060819aacdb39a77e2b24a0bd383c2b801c013f21a2b3141234a53fad6ad4bc2f816397bd2782175ac582b94824e7b94d888518ba9a682e6280b7a08507ab" 37 + ] 38 + }