30 lines
1.1 KiB
Text
30 lines
1.1 KiB
Text
|
|
version: "2.1.0+dune"
|
||
|
|
opam-version: "2.0"
|
||
|
|
name: "mtime"
|
||
|
|
synopsis: "Monotonic wall-clock time for OCaml"
|
||
|
|
description: """\
|
||
|
|
Mtime has platform independent support for monotonic wall-clock time
|
||
|
|
in pure OCaml. This time increases monotonically and is not subject to
|
||
|
|
operating system calendar time adjustments. The library has types to
|
||
|
|
represent nanosecond precision timestamps and time spans.
|
||
|
|
|
||
|
|
The additional Mtime_clock library provide access to a system
|
||
|
|
monotonic clock.
|
||
|
|
|
||
|
|
Mtime has a no dependency. Mtime_clock depends on your system library
|
||
|
|
or JavaScript runtime system. Mtime and its libraries are distributed
|
||
|
|
under the ISC license.
|
||
|
|
|
||
|
|
Home page: http://erratique.ch/software/mtime"""
|
||
|
|
maintainer: "Daniel Bünzli <daniel.buenzl i@erratique.ch>"
|
||
|
|
authors: "The mtime programmers"
|
||
|
|
license: "ISC"
|
||
|
|
homepage: "https://github.com/dune-universe/mtime"
|
||
|
|
bug-reports: "https://github.com/dbuenzli/mtime/issues"
|
||
|
|
depends: [
|
||
|
|
"dune"
|
||
|
|
"ocaml" {>= "4.08.0"}
|
||
|
|
]
|
||
|
|
build: [ "dune" "build" "-p" name "-j" jobs "@install" "@runtest" {with-test} ]
|
||
|
|
tags: [ "time" "posix" "system" "org:erratique" ]
|
||
|
|
dev-repo: "git+https://github.com/dune-universe/mtime.git"
|