this repo has no description
1opam-version: "2.0" 2synopsis: "Traversable data structures with applicative functors" 3description: """ 4Definition of applicative functors with instances for traversable 5 data structures""" 6maintainer: ["Thierry Martinez <thierry.martinez@inria.fr>"] 7authors: ["Thierry Martinez <thierry.martinez@inria.fr>"] 8license: "BSD-2-Clause" 9homepage: "https://github.com/thierry-martinez/traverse" 10doc: "https://github.com/thierry-martinez/traverse" 11bug-reports: "https://github.com/thierry-martinez/traverse" 12depends: [ 13 "ocaml" {>= "4.03.0"} 14 "dune" {>= "1.11.0"} 15 "stdcompat" {>= "14"} 16 "metapp" {>= "0.3.0"} 17 "metaquot" {>= "0.3.0"} 18 "odoc" {with-doc & >= "1.5.1"} 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/thierry-martinez/traverse" 35url { 36 src: "https://github.com/thierry-martinez/traverse/archive/v0.3.0.tar.gz" 37 checksum: "sha512=a29798bf912dc2c2ddce06aafc63f88fce4bf5dd35884c2e2c7b7caa1b2d8e95122e6f6d3b675965145853f530fad856740201f2f349561a15e78591a56e10fe" 38}