this repo has no description
1opam-version: "2.0"
2synopsis: """Result value combinators for OCaml"""
3maintainer: ["Daniel Bünzli <daniel.buenzl i@erratique.ch>"]
4authors: ["The rresult programmers"]
5homepage: "https://erratique.ch/software/rresult"
6doc: "https://erratique.ch/software/rresult/doc/Rresult"
7dev-repo: "git+https://erratique.ch/repos/rresult.git"
8bug-reports: "https://github.com/dbuenzli/rresult/issues"
9license: ["ISC"]
10tags: ["result" "error" "org:erratique"]
11depends: ["ocaml" {>= "4.08.0"}
12 "ocamlfind" {build}
13 "ocamlbuild" {build}
14 "topkg" {build & >= "1.0.3"}]
15build: [["ocaml" "pkg/pkg.ml" "build" "--dev-pkg" "%{dev}%"]]
16url {
17 src: "https://erratique.ch/software/rresult/releases/rresult-0.7.0.tbz"
18 checksum: "sha512=f1bb631c986996388e9686d49d5ae4d8aaf14034f6865c62a88fb58c48ce19ad2eb785327d69ca27c032f835984e0bd2efd969b415438628a31f3e84ec4551d3"}
19description: """
20Rresult is an OCaml module for handling computation results and errors
21in an explicit and declarative manner, without resorting to
22exceptions. It defines combinators to operate on the `result` type
23available from OCaml 4.03 in the standard library.
24
25OCaml 4.08 provides the `Stdlib.Result` module which you should prefer
26to Rresult.
27
28Rresult is distributed under the ISC license.
29
30Home page: http://erratique.ch/software/rresult
31Contact: Daniel Bünzli `<daniel.buenzl i@erratique.ch>`"""
32x-maintenance-intent: ["(latest)"]