this repo has no description
1opam-version: "2.0" 2synopsis: "Arbitrary-precision floating-point decimal library" 3description: """ 4Arbitrary-precision floating-point decimal library ported from 5the Python decimal module.""" 6maintainer: ["Yawar Amin <yawar.amin@gmail.com>"] 7authors: ["Yawar Amin <yawar.amin@gmail.com>"] 8license: "PSF-2.0" 9homepage: "https://github.com/yawaramin/ocaml-decimal" 10doc: "https://yawaramin.github.io/ocaml-decimal/api" 11bug-reports: "https://github.com/yawaramin/ocaml-decimal/issues" 12depends: [ 13 "dune" {>= "2.7"} 14 "angstrom" {>= "0.15.0" & < "1.0.0" & with-test} 15 "ocaml" {>= "4.08.0"} 16 "zarith" {>= "1.10" & < "2.0.0"} 17 "odoc" {with-doc} 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/yawaramin/ocaml-decimal.git" 34x-commit-hash: "24cf5663fd2092988c8c46eb94283b07c817c015" 35url { 36 src: 37 "https://github.com/yawaramin/ocaml-decimal/releases/download/v0.1.1/decimal-v0.1.1.tbz" 38 checksum: [ 39 "sha256=c100880fa853ae34e07c9a701a2530d8185119fc3b34b7d6125c83b93373747a" 40 "sha512=8130534fb3321d315031723d3fcb9846bec4031e5ec893b6e4a9455b8d396f190ffd9c29e8bf7f47e3d37e232d078df98976cf77965e0296e4a9daac25f02d66" 41 ] 42}