this repo has no description
1opam-version: "2.0" 2synopsis: "Traversable containers, monad extensions, and more" 3description: """ 4'Travesty' is a library for defining containers with applicative 5or monadic traversals, inspired by Haskell's Traversable typeclass; it also 6contains various helpers for monadic code, such as state transformers and 7extension functions for common monads and containers. It sits on top of Jane 8Street's Base library and ecosystem.""" 9maintainer: ["Matt Windsor <mattwindsor91@gmail.com>"] 10authors: ["Matt Windsor <mattwindsor91@gmail.com>"] 11license: "MIT" 12homepage: "https://MattWindsor91.github.io/travesty/" 13doc: "https://MattWindsor91.github.io/travesty/" 14bug-reports: "https://github.com/MattWindsor91/travesty/issues" 15depends: [ 16 "dune" {>= "3.6"} 17 "ocaml" {>= "5.1"} 18 "ppx_jane" {>= "v0.16.0"} 19 "ppx_expect" {with-test & >= "v0.16.0"} 20 "base" {>= "v0.16.3" & < "v0.17"} 21 "odoc" {with-doc} 22] 23build: [ 24 ["dune" "subst"] {dev} 25 [ 26 "dune" 27 "build" 28 "-p" 29 name 30 "-j" 31 jobs 32 "@install" 33 "@runtest" {with-test} 34 "@doc" {with-doc} 35 ] 36] 37dev-repo: "git+https://github.com/MattWindsor91/travesty.git" 38url { 39 src: 40 "https://github.com/MattWindsor91/travesty/releases/download/v0.8.0/travesty-0.8.0.tbz" 41 checksum: [ 42 "sha256=216c920c872cef2d52fa58e3c49826766a2cf6f2233e64937f18c46c0c5c5388" 43 "sha512=3b4f76794666aa3fb16c3639479790df3478a79e6f582b3e66b144e57df26a76580499961dd374f4fb6f3bd2dd7506e2725ed1242bada9deb14eb1916cacd18f" 44 ] 45} 46x-commit-hash: "b310f87034d4162e0f6f92cabd252314a314bc6e"