this repo has no description
1opam-version: "2.0"
2synopsis: "Fold on integer range"
3description: """
4
5Library to work on range of sequential integers with features like : split, map,
6filter capacities.
7Designed for making distributed computing easier with libraries like functory.
8"""
9maintainer: ["contact@aldrik.net"]
10authors: ["Aldrik KLEBER"]
11license: "GPL-3.0-or-later"
12homepage: "https://github.com/aldrikfr/range"
13bug-reports: "https://github.com/aldrikfr/range/issues"
14depends: [
15 "ocaml" {>= "4.02"}
16 "base" {>= "v0.12"}
17 "dune" {>= "2.2"}
18 "ounit" {with-test}
19]
20build: [
21 ["dune" "subst"] {dev}
22 [
23 "dune"
24 "build"
25 "-p"
26 name
27 "-j"
28 jobs
29 "@install"
30 "@runtest" {with-test}
31 "@doc" {with-doc}
32 ]
33]
34dev-repo: "git+https://github.com/aldrikfr/range.git"
35
36url {
37 src: "https://github.com/aldrikfr/range/archive/0.8.3.tar.gz"
38 checksum: [
39 "sha256=76986a77f2e9b3046be13a5b62a781e0483405c9376671a31866da56a0ddec89"
40 "md5=7b9732f6ba03ddc22cf0b4b7bd04dbe1"
41 ]
42}