(lang dune 3.22)
(name store)
(version 0.1)
(sections
 (lib /usr/lib64/ocaml/store)
 (libexec /usr/lib64/ocaml/store)
 (doc /usr/doc/store))
(files
 (lib
  (META
   dune-package
   opam
   store.a
   store.cma
   store.cmi
   store.cmt
   store.cmti
   store.cmx
   store.cmxa
   store.ml
   store.mli))
 (libexec (store.cmxs))
 (doc (CHANGES.md LICENSE README.md)))
(library
 (name store)
 (kind normal)
 (archives (byte store.cma) (native store.cmxa))
 (plugins (byte store.cma) (native store.cmxs))
 (native_archives store.a)
 (main_module_name Store)
 (modes byte native)
 (modules
  (singleton
   (obj_name store)
   (visibility public)
   (source (path Store) (intf (path store.mli)) (impl (path store.ml))))))
