this repo has no description
1opam-version: "2.0" 2synopsis: "Dual numbers library" 3description: "This is an implementation of dual numbers in OCaml" 4maintainer: ["drjdnielsen@gmail.com"] 5authors: ["Jason D. Nielsen"] 6license: "MIT" 7homepage: "https://github.com/drjdn/ocaml_dual" 8bug-reports: "https://github.com/drjdn/ocaml_dual/issues" 9depends: [ 10 "dune" {>= "2.7"} 11 "ocaml" {>= "4.07"} 12 "ounit2" {with-test} 13 "odoc" {with-doc} 14] 15build: [ 16 ["dune" "subst"] {dev} 17 [ 18 "dune" 19 "build" 20 "-p" 21 name 22 "-j" 23 jobs 24 "@install" 25 "@runtest" {with-test} 26 "@doc" {with-doc} 27 ] 28] 29dev-repo: "git+https://github.com/drjdn/ocaml_dual.git" 30url { 31 src: "https://github.com/drjdn/ocaml_dual/archive/0.1.0.tar.gz" 32 checksum: [ 33 "md5=0d534396a533cbdebf089777bfe57cec" 34 "sha512=1b184af2fe7b3f9d1c4a9fc7b8ec7e69dd32ae97618353a2da90c3e34b500b39186d7b23128a3da4534cc0a4b846efd01a7b38c9f0089f386241e0ecc4439852" 35 ] 36}