this repo has no description
1opam-version: "2.0" 2synopsis: "A parser for Garmin FIT data files" 3description: """ 4Fit is library for reading FIT files as they are produced by Garmin and 5other fitness devices. It comes with a small command-line tool to emit 6some of that information as JSON, mostly for debugging. Fit is not 7comprehensive but reads the most important records from a FIT file that 8contains the actual periodic measurements.""" 9maintainer: "Christian Lindig <lindig@gmail.com>" 10authors: "Christian Lindig <lindig@gmail.com>" 11license: "MIT" 12homepage: "https://github.com/lindig/fit" 13bug-reports: "https://github.com/lindig/fit/issues" 14depends: [ 15 "ocaml" {>= "4.08.0"} 16 "dune" {>= "2.0"} 17 "cmdliner" {>= "1.1.0"} 18 "angstrom" {>= "0.15.0"} 19 "ezjsonm" {>= "1.2.0"} 20 "rresult" {>= "0.6.0"} 21 "ISO8601" {>= "0.2.6"} 22] 23build: ["dune" "build" "-p" name "-j" jobs] 24dev-repo: "git+https://github.com/lindig/fit.git" 25url { 26 src: "https://github.com/lindig/fit/releases/download/1.0.3/fit-1.0.3.tbz" 27 checksum: [ 28 "sha256=559ecb941426300106114c76b0cbbd62a9c95719b4cf2f81f00693d8b0281164" 29 "sha512=69c95be4e92e87752e0f13fb2c1a964df0ef52dde64ff6ce46ac5bf46f1c0d6df59cb87217a71424e227618ac9e09b3b2be0a3deb4bed4b04926267577c863ca" 30 ] 31} 32x-commit-hash: "d03194211d056d8552977962aff381533988adf2"