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>"] 8license: "MIT" 9homepage: "https://github.com/CraigFe/progress" 10doc: "https://CraigFe.github.io/progress/" 11bug-reports: "https://github.com/CraigFe/progress/issues" 12depends: [ 13 "dune" {>= "2.7"} 14 "ocaml" {>= "4.08.0"} 15 "terminal" {= version} 16 "fmt" {>= "0.8.5"} 17 "logs" {>= "0.7.0"} 18 "mtime" {>= "1.1.0" & < "2.0.0"} 19 "uucp" {>= "2.0.0"} 20 "uutf" {>= "1.0.0"} 21 "vector" 22 "optint" {>= "0.1.0"} 23 "alcotest" {with-test & >= "1.4.0"} 24 "astring" {with-test} 25 "odoc" {with-doc} 26] 27build: [ 28 ["dune" "subst"] {dev} 29 [ 30 "dune" 31 "build" 32 "-p" 33 name 34 "-j" 35 jobs 36 "@install" 37 "@runtest" {with-test} 38 "@doc" {with-doc} 39 ] 40] 41dev-repo: "git+https://github.com/CraigFe/progress.git" 42x-commit-hash: "1813dac3859e88fa354e2ecad5cd9192e95e7761" 43url { 44 src: 45 "https://github.com/CraigFe/progress/releases/download/0.2.0/terminal-0.2.0.tbz" 46 checksum: [ 47 "sha256=7a92f6aede3d5010a30e6e47ccbc8380cc5bece8ac95c508323eb25272e6ddd3" 48 "sha512=a2ccea467e2d0e419b569992102bd2c43ff97b47f7f8413ee8fbe775ce369a80ff11e0a8fd450ebf1776f7c65baf2482076a120318c9d818488ceba0b9196639" 49 ] 50}