4 changed files with 88 additions and 15 deletions
@ -0,0 +1,3 @@ |
|||
## 0.0.1 - 2019-11-21 |
|||
|
|||
First release |
@ -1,3 +1,35 @@ |
|||
(lang dune 1.11) |
|||
|
|||
(name memo) |
|||
|
|||
(license ISC) |
|||
|
|||
(authors "Léo Andrès <contact@ndrs.fr>") |
|||
|
|||
(maintainers "Léo Andrès <contact@ndrs.fr>") |
|||
|
|||
(source |
|||
(uri git://git.zapashcanon.fr/zapashcanon/memo.git)) |
|||
|
|||
(bug_reports https://git.zapashcanon.fr/zapashcanon/memo/issues) |
|||
|
|||
(homepage https://git.zapashcanon.fr/zapashcanon/memo) |
|||
|
|||
(documentation https://doc.zapashcanon.fr/memo/) |
|||
|
|||
(generate_opam_files true) |
|||
|
|||
(explicit_js_mode) |
|||
|
|||
(package |
|||
(name memo) |
|||
(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.") |
|||
(depends |
|||
(ocaml |
|||
(>= 4.05.0)) |
|||
(dune |
|||
(>= 1.11.0)) |
|||
(bisect_ppx |
|||
(>= 1.4.1)))) |
|||
|
@ -1,23 +1,31 @@ |
|||
# This file is generated by dune, edit dune-project instead |
|||
opam-version: "2.0" |
|||
|
|||
synopsis: "Memoïzation library" |
|||
|
|||
version: "dev" |
|||
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: ["Léo Andrès <contact@ndrs.fr>"] |
|||
authors: ["Léo Andrès <contact@ndrs.fr>"] |
|||
license: "ISC" |
|||
homepage: "https://git.zapashcanon.fr/zapashcanon/memo" |
|||
doc: "https://doc.zapashcanon.fr/memo/" |
|||
bug-reports: "https://git.zapashcanon.fr/zapashcanon/memo/issues" |
|||
|
|||
authors: "Léo Andrès (zapashcanon) <leo@ndrs.fr>" |
|||
maintainer: "Léo Andrès (zapashcanon) <leo@ndrs.fr>" |
|||
dev-repo: "git+https://git.zapashcanon.fr/zapashcanon/memo.git" |
|||
|
|||
depends: [ |
|||
"ocaml" |
|||
"ocaml" {>= "4.05.0"} |
|||
"dune" {>= "1.11.0"} |
|||
"bisect_ppx" {>= "1.4.1"} |
|||
] |
|||
|
|||
build: [ |
|||
["dune" "build" "-p" name "-j" jobs] |
|||
["dune" "subst"] {pinned} |
|||
[ |
|||
"dune" |
|||
"build" |
|||
"-p" |
|||
name |
|||
"-j" |
|||
jobs |
|||
"@install" |
|||
"@runtest" {with-test} |
|||
"@doc" {with-doc} |
|||
] |
|||
] |
|||
|
|||
description: "Memo is a library for memoïzation." |
|||
dev-repo: "git://git.zapashcanon.fr/zapashcanon/memo.git" |
|||
|
Loading…
Reference in new issue