1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
|
version: "0.9.10"
opam-version: "2.0"
name: "uuidm"
synopsis: "Universally unique identifiers (UUIDs) for OCaml"
description: """\
Uuidm is an OCaml library implementing 128 bits universally unique
identifiers version 3, 5 (named based with MD5, SHA-1 hashing), 4
(random based), 7 (time and random based) and 8 (custom) according to
[RFC 9562].
Uuidm has no dependency. It is distributed under the ISC license.
[RFC 9562]: https://www.rfc-editor.org/rfc/rfc9562
Homepage: <https://erratique.ch/software/uuidm>"""
maintainer: "Daniel Bünzli <daniel.buenzl i@erratique.ch>"
authors: "The uuidm programmers"
license: "ISC"
tags: ["uuid" "codec" "org:erratique"]
homepage: "https://erratique.ch/software/uuidm"
doc: "https://erratique.ch/software/uuidm/doc/"
bug-reports: "https://github.com/dbuenzli/uuidm/issues"
depends: [
"ocaml" {>= "4.14.0"}
"ocamlfind" {build}
"ocamlbuild" {build}
"topkg" {build & >= "1.0.3"}
]
depopts: ["cmdliner"]
conflicts: [
"cmdliner" {< "1.3.0"}
]
build: [
"ocaml"
"pkg/pkg.ml"
"build"
"--dev-pkg"
"%{dev}%"
"--with-cmdliner"
"%{cmdliner:installed}%"
]
dev-repo: "git+https://erratique.ch/repos/uuidm.git"
x-maintenance-intent: ["(latest)"]
|