this repo has no description
1opam-version: "2.0"
2synopsis: "OCaml date time handling 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- Supports Gregorian calendar date, ISO week date, and ISO ordinal date
11
12- Supports nanosecond precision
13
14- ISO8601 parsing and RFC3339 printing
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"}
27 "seq"
28 "mparser" {>= "1.3"}
29 "containers" {>= "3.4"}
30 "ptime"
31 "yojson" {>= "1.6.0"}
32 "fmt" {>= "0.8.9"}
33 "fileutils"
34 "crowbar" {with-test}
35 "alcotest" {with-test}
36 "qcheck-alcotest" {with-test}
37 "qcheck" {with-test}
38]
39build: [
40 ["dune" "build" "-p" name "-j" jobs]
41]
42url {
43 src:
44 "https://github.com/daypack-dev/timere/releases/download/desc-v0.5.0/desc-v0.5.0.tar.gz"
45 checksum:
46 "sha256=24a2485a951e59df52a8eecd9b894a013aaeaccde3d5b784c991e59a88e19ddf"
47}