(lang dune 3.11)
(name benchmark)
(version 1.6)
(sections
 (lib /usr/lib/ocaml/benchmark)
 (libexec /usr/lib/ocaml/benchmark)
 (doc /usr/doc/benchmark))
(files
 (lib
  (META
   benchmark.a
   benchmark.cma
   benchmark.cmi
   benchmark.cmt
   benchmark.cmti
   benchmark.cmx
   benchmark.cmxa
   benchmark.ml
   benchmark.mli
   dune-package
   opam))
 (libexec (benchmark.cmxs))
 (doc (CHANGES.md LICENSE.md README.md)))
(library
 (name benchmark)
 (kind normal)
 (synopsis "Benchmark running times of code")
 (archives (byte benchmark.cma) (native benchmark.cmxa))
 (plugins (byte benchmark.cma) (native benchmark.cmxs))
 (native_archives benchmark.a)
 (requires unix)
 (main_module_name Benchmark)
 (modes byte native)
 (modules
  (singleton
   (obj_name benchmark)
   (visibility public)
   (source
    (path Benchmark)
    (intf (path benchmark.mli))
    (impl (path benchmark.ml))))))
