this repo has no description
1opam-version: "2.0" 2synopsis: "Benchmark running times of code" 3description: """ 4This module provides a set of tools to measure the running times of 5your functions and to easily compare the results. A statistical test 6is used to determine whether the results truly differ.""" 7maintainer: ["Christophe Troestler <Christophe.Troestler@umons.ac.be>"] 8authors: [ 9 "Christophe Troestler <Christophe.Troestler@umons.ac.be>" 10 "Doug Bagley" 11 "c-cube" 12] 13license: "LGPL-3.0 WITH OCaml linking exception" 14homepage: "https://github.com/Chris00/ocaml-benchmark" 15bug-reports: "https://github.com/Chris00/ocaml-benchmark/issues" 16depends: [ 17 "ocaml" {>= "4.03"} 18 "base-unix" 19 "dune" {>= "2.0"} 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/Chris00/ocaml-benchmark.git" 36url { 37 src: 38 "https://github.com/Chris00/ocaml-benchmark/releases/download/v1.7/benchmark-1.7.tbz" 39 checksum: [ 40 "sha256=0228fbbc9cda98d5907e32de1a010d948a7a225f3e59cf61b1a86be1e0c6b3af" 41 "sha512=9ca163fb3ae6c5e5239d0198cc9ec9b0811a48cf160f6e0fff635b0afdda99ae4503d0e4341b95bcb1e15bc1fcb60238761e49d4004c506fb2c53174c9890de2" 42 ] 43} 44x-commit-hash: "d299f7101aab4e08e0a37518262583af51db0d83"