first commit

This commit is contained in:
pena 2019-05-07 18:57:32 +02:00
commit f8f05a731b
15 changed files with 423 additions and 0 deletions

30
memo.opam Normal file
View file

@ -0,0 +1,30 @@
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "Memoïzation library"
description:
"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."
maintainer: ["pena <pena@kumikode.org>"]
authors: ["pena <pena@kumikode.org>"]
license: "ISC"
homepage: "https://forge.kumikode.org/kumikode/memo"
bug-reports: "https://forge.kumikode.org/kumikode/memo/issues"
depends: [
"dune" {>= "3.0"}
"ocaml" {>= "4.12"}
"odoc" {with-doc}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git://forge.kumikode.org/kumikode/memo.git"