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.2.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.4.0/v0.4.0.tar.gz" 43 checksum: 44 "sha256=cf2fc7d0af7ef8bdc97620fd55a5f128de04fc91f8851c3fcabb11c1a3d7a318" 45}