this repo has no description
1opam-version: "2.0" 2maintainer: "Christophe Troestler <Christophe.Troestler@umons.ac.be>" 3authors: ["Christophe Troestler <Christophe.Troestler@umons.ac.be>" 4 "Doug Bagley"] 5tags: ["benchmark"] 6license: "LGPL-3.0-only WITH OCaml-LGPL-linking-exception" 7homepage: "https://github.com/Chris00/ocaml-benchmark" 8dev-repo: "git+https://github.com/Chris00/ocaml-benchmark.git" 9bug-reports: "https://github.com/Chris00/ocaml-benchmark/issues" 10doc: "https://Chris00.github.io/ocaml-benchmark/doc" 11build: [ 12 [ "jbuilder" "subst" "-p" name ] {dev} 13 [ "jbuilder" "build" "-p" name "-j" jobs ] 14] 15depends: [ 16 "ocaml" {>= "3.12.0"} 17 "jbuilder" {>= "1.0+beta7"} 18 "base-unix" 19 "base-bigarray" {with-test} 20 "pcre" {with-test} 21] 22synopsis: "Benchmark running times of code" 23description: """ 24This module provides a set of tools to measure the running times of 25your functions and to easily compare the results. A statistical test 26is used to determine whether the results truly differ.""" 27url { 28 src: 29 "https://github.com/Chris00/ocaml-benchmark/releases/download/1.5/benchmark-1.5.tbz" 30 checksum: [ 31 "sha256=56b4a4512d22047f646bc7116a33d263f8fbd3e9b5559137abfcf6d3b4f458bf" 32 "md5=af4bef4028866b21496c583f83a86c7f" 33 ] 34}