this repo has no description
1opam-version: "2.0"
2synopsis: "Monadically traversable containers"
3description: """
4'Travesty' is a library for defining containers with monadic traversals,
5inspired by Haskell's Traversable typeclass. It sits on top of Jane Street's
6Base library and ecosystem."""
7maintainer: ["Matt Windsor <m.windsor@imperial.ac.uk>"]
8authors: ["Matt Windsor <m.windsor@imperial.ac.uk>"]
9license: "MIT"
10homepage: "https://MattWindsor91.github.io/travesty/"
11doc: "https://MattWindsor91.github.io/travesty/"
12bug-reports: "https://github.com/MattWindsor91/travesty/issues"
13depends: [
14 "ocaml" {>= "4.07"}
15 "dune" {>= "2.0"}
16 "ppx_jane" {>= "v0.12.0"}
17 "base" {>= "v0.12.0" & < "v0.16.0"}
18 "ppx_expect" {with-test & < "v0.14"}
19]
20build: [
21 ["dune" "subst"] {dev}
22 [
23 "dune"
24 "build"
25 "-p"
26 name
27 "-j"
28 jobs
29 "@install"
30 "@runtest" {with-test}
31 "@doc" {with-doc}
32 ]
33]
34dev-repo: "git+https://github.com/MattWindsor91/travesty.git"
35url {
36 src:
37 "https://github.com/MattWindsor91/travesty/releases/download/v0.6.2/travesty-v0.6.2.tbz"
38 checksum: [
39 "sha256=be89ec1c96fedcc47362568b359aa6b8d3fefb8b86f70133dd1a75ca72476807"
40 "sha512=19616b0a5fddd5725fdf7ab160e9f89d243f0dbaaaf53ba455bfbac2790cb07811862ecc5ada81be35a06869a987dcc149f24a7e84f461222216d45fe0036ca2"
41 ]
42}