(lang dune 3.20)
(name mustache)
(version v3.3.0)
(sections (lib .) (libexec .) (doc ../../doc/mustache))
(files
 (lib
  (META
   dune-package
   mustache.a
   mustache.cma
   mustache.cmi
   mustache.cmt
   mustache.cmti
   mustache.cmx
   mustache.cmxa
   mustache.ml
   mustache.mli
   mustache_lexer.cmi
   mustache_lexer.cmt
   mustache_lexer.cmx
   mustache_lexer.ml
   mustache_parser.cmi
   mustache_parser.cmt
   mustache_parser.cmti
   mustache_parser.cmx
   mustache_parser.ml
   mustache_parser.mli
   mustache_types.cmi
   mustache_types.cmt
   mustache_types.cmx
   mustache_types.ml
   opam))
 (libexec (mustache.cmxs))
 (doc (CHANGES.md LICENSE.md README.md)))
(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))
 (native_archives mustache.a)
 (requires menhirLib)
 (modes byte native)
 (modules
  (unwrapped
   (module
    (obj_name mustache)
    (visibility public)
    (source
     (path Mustache)
     (intf (path mustache.mli))
     (impl (path mustache.ml))))
   (module
    (obj_name mustache_lexer)
    (visibility public)
    (source (path Mustache_lexer) (impl (path mustache_lexer.ml))))
   (module
    (obj_name mustache_parser)
    (visibility public)
    (source
     (path Mustache_parser)
     (intf (path mustache_parser.mli))
     (impl (path mustache_parser.ml))))
   (module
    (obj_name mustache_types)
    (visibility public)
    (source (path Mustache_types) (impl (path mustache_types.ml)))))))
