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