this repo has no description
1opam-version: "2.0" 2synopsis: "OCaml 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 "crowbar" {with-test} 38 "fileutils" {with-test} 39 "alcotest" {with-test} 40 "qcheck-alcotest" {with-test} 41 "qcheck" {with-test} 42] 43build: [ 44 ["dune" "build" "-p" name "-j" jobs] 45] 46url { 47 src: 48 "https://github.com/daypack-dev/timere/releases/download/v0.1.3/v0.1.3.tar.gz" 49 checksum: 50 "sha256=fefd171ec57891bf641734b119db69750fbf854b77ed13c03af036e398d5c8eb" 51}