this repo has no description
1opam-version: "2.0" 2synopsis: "User-definable progress bars" 3description: """ 4A progress bar library for OCaml, featuring a DSL for declaratively specifying 5progress bar formats. Supports rendering multiple progress bars simultaneously.""" 6maintainer: ["Craig Ferguson <me@craigfe.io>"] 7authors: ["Craig Ferguson <me@craigfe.io>"] 8homepage: "https://github.com/CraigFe/progress" 9doc: "https://CraigFe.github.io/progress/" 10bug-reports: "https://github.com/CraigFe/progress/issues" 11depends: [ 12 "dune" {>= "2.7"} 13 "ocaml" {>= "4.08.0"} 14 "mtime" {< "1.4.0"} 15 "terminal_size" 16 "alcotest" {>= "1.1.0" & with-test} 17 "astring" {with-test} 18 "fmt" {with-test} 19 "odoc" {with-doc} 20] 21build: [ 22 ["dune" "subst"] {dev} 23 [ 24 "dune" 25 "build" 26 "-p" 27 name 28 "-j" 29 jobs 30 "@install" 31 "@runtest" {with-test} 32 "@doc" {with-doc} 33 ] 34] 35dev-repo: "git+https://github.com/CraigFe/progress.git" 36x-commit-hash: "ec2ca20cfab6b81e99c123d541d71c70567153c5" 37url { 38 src: 39 "https://github.com/CraigFe/progress/releases/download/0.1.1/progress-0.1.1.tbz" 40 checksum: [ 41 "sha256=90c6bec19d014a4c6b0b67006f08bdfcf36981d2176769bebe0ccd75d6785a32" 42 "sha512=76a8a8f5979c1d6ba47d28e8c8fc6fa2c4f27073f77749b98f98eaf9c101fdc0f9f76e6463ea8dbea5dbbc69a105908be26c605c8c56ddc1a1a5ccc48db87a5a" 43 ] 44}