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" & < "4.12.0"} 14 "dune" {>= "1.10.0"} 15 "stdcompat" {>= "14"} 16 "metapp" {>= "0.2.0" & < "0.3.0"} 17 "metaquot" {>= "0.2.0" & < "0.3.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/thierry-martinez/traverse" 34url { 35 src: "https://github.com/thierry-martinez/traverse/archive/v0.2.0.tar.gz" 36 checksum: "sha512=8e27a74019739fd4945e4a1d390c82313a85a578bf52e7eec76535b6f9817b10d5c2618faf2674dee96e6470cbfd4c5e51d1d9cf219aa405b8649f5835533a4c" 37}