this repo has no description
1opam-version: "2.0"
2synopsis: "OCaml date time reasoning library"
3description: """
4Features:
5
6- Reasoning over time intervals via `timere` objects/expressions, examples:
7
8 - Pattern matching time and intervals. These work across DST boundaries.
9
10 - Intersection and union
11
12 - Chunking at year or month boundary, or in fixed sizes
13
14 - Evaluate (sub)expressions with a different time zone (e.g. intersection of 9am to 5pm of Sydney and 9am to 5pm of New York)
15"""
16maintainer: "Darren Ldl <darrenldldev@gmail.com>"
17authors: "Daypack developers"
18license: "MIT"
19homepage: "https://github.com/daypack-dev/timere"
20bug-reports: "https://github.com/daypack-dev/timere/issues"
21dev-repo: "git+https://github.com/daypack-dev/timere"
22depends: [
23 "ocaml" {>= "4.06.1" & < "5.0"}
24 "bisect_ppx" {dev & >= "2.5.0"}
25 "dune" {>= "2.7.0"}
26 "oseq" {>= "0.3" & < "0.5"}
27 "seq"
28 "containers" {>= "3.4"}
29 "fmt" {>= "0.8.7"}
30 "timedesc" {>= "0.3.0" & < "0.5.0"}
31 "crowbar" {with-test}
32 "alcotest" {with-test}
33 "qcheck-alcotest" {with-test}
34 "qcheck" {with-test}
35 "diet" {with-test}
36]
37build: [
38 ["dune" "build" "-p" name "-j" jobs]
39]
40url {
41 src:
42 "https://github.com/daypack-dev/timere/releases/download/v0.5.0/v0.5.0.tar.gz"
43 checksum:
44 "sha256=ba1c9b9d96e7b4d248de3276d217aae6761d35f495e4612d430f8b01590e1368"
45}