(lang dune 3.11)
(name hex)
(sections (lib .) (libexec .) (doc ../../doc/hex))
(files
 (lib
  (META
   dune-package
   hex.a
   hex.cma
   hex.cmi
   hex.cmt
   hex.cmti
   hex.cmx
   hex.cmxa
   hex.ml
   hex.mli
   opam))
 (libexec (hex.cmxs))
 (doc (CHANGES.md LICENSE.md README.md)))
(library
 (name hex)
 (kind normal)
 (archives (byte hex.cma) (native hex.cmxa))
 (plugins (byte hex.cma) (native hex.cmxs))
 (native_archives hex.a)
 (requires cstruct)
 (main_module_name Hex)
 (modes byte native)
 (modules
  (singleton
   (obj_name hex)
   (visibility public)
   (source (path Hex) (intf (path hex.mli)) (impl (path hex.ml))))))
