(lang dune 1.11)
(name mustache)
(library
 (name mustache)
 (kind normal)
 (synopsis "Mustache.js templates in OCaml")
 (archives (byte mustache.cma) (native mustache.cmxa))
 (plugins (byte mustache.cma) (native mustache.cmxs))
 (foreign_archives (native mustache.a))
 (requires menhirLib)
 (modes byte native)
 (modules
  (unwrapped
   ((name Mustache) (obj_name mustache) (visibility public) (impl) (intf))
   ((name Mustache_lexer)
    (obj_name mustache_lexer)
    (visibility public)
    (impl))
   ((name Mustache_parser)
    (obj_name mustache_parser)
    (visibility public)
    (impl)
    (intf))
   ((name Mustache_types)
    (obj_name mustache_types)
    (visibility public)
    (impl)))))
