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, 5 inspired by Haskell's Traversable typeclass. It sits on top of Jane Street's 6 Core library ecosystem." 7maintainer: "Matt Windsor <m.windsor@imperial.ac.uk>" 8authors: "Matt Windsor <m.windsor@imperial.ac.uk>" 9license: "MIT" 10doc: "https://MattWindsor91.github.io/travesty/" 11homepage: "https://MattWindsor91.github.io/travesty" 12bug-reports: "https://github.com/MattWindsor91/travesty/issues" 13depends: [ 14 "ocaml" {>= "4.07"} 15 "dune" 16 "ppx_deriving" 17 "ppx_expect" 18 "ppx_jane" 19 "ppx_sexp_message" 20 "core_kernel" {>= "v0.12.0" & < "v0.16.0"} 21] 22build: ["dune" "build" "-p" name "-j" jobs] 23run-test: ["dune" "runtest" "-p" name "-j" jobs] 24dev-repo: "git+https://github.com/MattWindsor91/travesty" 25url { 26 src: 27 "https://github.com/MattWindsor91/travesty/releases/download/v0.3.0/travesty-v0.3.0.tbz" 28 checksum: [ 29 "sha256=40ada5c475cfeba7d933eec133294d1b5ef5da6ce864c9746b2ce4ce49b5e3a4" 30 "md5=dc818d6b232f13edb388d25781cd99a2" 31 ] 32}