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" & < "4.10"} 15 "dune" {>= "2.0" & < "3.0"} 16 "ppx_jane" {>= "v0.12.0"} 17 "base" {>= "v0.12.0" & < "v0.16.0"} 18] 19build: [ 20 ["dune" "subst"] {dev} 21 [ 22 "dune" 23 "build" 24 "-p" 25 name 26 "-j" 27 jobs 28 "@install" 29 "@runtest" {with-test} 30 "@doc" {with-doc} 31 ] 32] 33dev-repo: "git+https://github.com/MattWindsor91/travesty.git" 34url { 35 src: 36 "https://github.com/MattWindsor91/travesty/releases/download/v0.6.1/travesty-v0.6.1.tbz" 37 checksum: [ 38 "sha256=9c7b3803620c54496a35983285242ec8e06a5efb1baa3523384d7184b7e9fab7" 39 "sha512=991646fe5bb899971d3f8c00432d4df6c45dbd81cbff885b28d30d9c228e5df61f1e8d61aadc164ec35c448093abb34fd7a7d571e1cdf4d3af25579bf400f167" 40 ] 41}