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.3.1/v0.3.1.tar.gz" 50 checksum: 51 "sha256=f5ba8d2ac9eb2eb9eceae53e698d20c7196f7b5d27c1ede2e6a22d9579b98ce0" 52}