this repo has no description
1opam-version: "2.0"
2synopsis: """Monotonic wall-clock time for OCaml"""
3maintainer: ["Daniel Bünzli <daniel.buenzl i@erratique.ch>"]
4authors: ["The mtime programmers"]
5homepage: "https://erratique.ch/software/mtime"
6doc: "https://erratique.ch/software/mtime/doc/"
7dev-repo: "git+https://erratique.ch/repos/mtime.git"
8bug-reports: "https://github.com/dbuenzli/mtime/issues"
9license: ["ISC"]
10tags: ["time" "monotonic" "system" "org:erratique"]
11depends: ["ocaml" {>= "4.03.0"}
12 "ocamlfind" {build}
13 "ocamlbuild" {build & != "0.9.0"}
14 "topkg" {build & >= "1.0.3"}]
15depopts: ["js_of_ocaml"]
16conflicts: ["js_of_ocaml" {<= "3.3.0"}]
17build: [["ocaml" "pkg/pkg.ml" "build" "--dev-pkg" "%{dev}%"
18 "--with-js_of_ocaml" "%{js_of_ocaml:installed}%"]]
19url {
20 src: "https://erratique.ch/software/mtime/releases/mtime-1.3.0.tbz"
21 checksum: "sha512=5b998ef803020de4771525adaa448623d348fa079800e72ba2ba78ff2d76a7d89da6200fe8bbc435d1355ad2c571c029398150d618912e58b5765fcf2210a5d0"}
22description: """
23Mtime has platform independent support for monotonic wall-clock time
24in pure OCaml. This time increases monotonically and is not subject to
25operating system calendar time adjustments. The library has types to
26represent nanosecond precision timestamps and time spans.
27
28The additional Mtime_clock library provide access to a system
29monotonic clock.
30
31Mtime has a no dependency. Mtime_clock depends on your system library.
32The optional JavaScript support depends on [js_of_ocaml][jsoo]. Mtime
33and its libraries are distributed under the ISC license.
34
35[jsoo]: http://ocsigen.org/js_of_ocaml/
36
37Home page: http://erratique.ch/software/mtime"""