(lang dune 2.9)
(name markup-lwt)
(library
 (name markup-lwt)
 (kind normal)
 (synopsis "Lwt support for Markup.ml")
 (archives (byte markup_lwt.cma) (native markup_lwt.cmxa))
 (plugins (byte markup_lwt.cma) (native markup_lwt.cmxs))
 (native_archives markup_lwt.a)
 (requires lwt markup)
 (main_module_name Markup_lwt)
 (modes byte native)
 (modules
  (singleton
   (name Markup_lwt)
   (obj_name markup_lwt)
   (visibility public)
   (impl)
   (intf))))
(library
 (name markup-lwt.unix)
 (kind normal)
 (synopsis "Lwt_unix helpers for Markup.ml")
 (archives (byte unix/markup_lwt_unix.cma) (native unix/markup_lwt_unix.cmxa))
 (plugins (byte unix/markup_lwt_unix.cma) (native unix/markup_lwt_unix.cmxs))
 (native_archives unix/markup_lwt_unix.a)
 (requires lwt lwt.unix markup markup-lwt)
 (main_module_name Markup_lwt_unix)
 (modes byte native)
 (modules
  (singleton
   (name Markup_lwt_unix)
   (obj_name markup_lwt_unix)
   (visibility public)
   (impl)
   (intf))))
