this repo has no description
1# This file is generated by dune, edit dune-project instead
2opam-version: "2.0"
3synopsis: "OCaml date time reasoning library"
4description: """
5
6Features:
7
8- Reasoning over time intervals via `timere` objects/expressions, examples:
9
10 - Pattern matching time and intervals. These work across DST boundaries.
11
12 - Intersection and union
13
14 - Chunking at year or month boundary, or in fixed sizes
15
16 - Evaluate (sub)expressions with a different time zone (e.g. intersection of 9am to 5pm of Sydney and 9am to 5pm of New York)
17"""
18maintainer: ["Darren Ldl <darrenldldev@gmail.com>"]
19authors: ["Daypack developers"]
20license: "MIT"
21homepage: "https://github.com/daypack-dev/timere"
22bug-reports: "https://github.com/daypack-dev/timere/issues"
23depends: [
24 "ocaml" {>= "4.08"}
25 "bisect_ppx" {dev & >= "2.5.0"}
26 "dune" {>= "2.9"}
27 "seq"
28 "oseq" {>= "0.5"}
29 "containers" {>= "3.6"}
30 "fmt"
31 "timedesc" {>= "2.0.0" & < "3.0.0"}
32 "timedesc-sexp" {>= "2.0.0" & < "3.0.0"}
33 "diet" {>= "0.4"}
34 "crowbar" {with-test}
35 "alcotest" {with-test}
36 "qcheck-alcotest" {with-test}
37 "qcheck" {with-test}
38 "odoc" {with-doc}
39]
40build: [
41 ["dune" "subst"] {dev}
42 [
43 "dune"
44 "build"
45 "-p"
46 name
47 "-j"
48 jobs
49 "--promote-install-files=false"
50 "@install"
51 "@runtest" {with-test}
52 "@doc" {with-doc}
53 ]
54 ["dune" "install" "-p" name "--create-install-files" name]
55]
56dev-repo: "git+https://github.com/daypack-dev/timere.git"
57
58url {
59 src:
60 "https://github.com/daypack-dev/timere/releases/download/timere-0.8.0/timere-0.8.0.tar.gz"
61 checksum:
62 "sha256=68716028c01ce58edb10523ca7a8b4af4382659cf938a1eb574815989cff9b69"
63}
64