(lang dune 1.9)
(name csv-lwt)
(library
 (name csv-lwt)
 (kind normal)
 (synopsis "A pure OCaml library to read and write CSV files (LWT version).")
 (archives (byte csv_lwt.cma) (native csv_lwt.cmxa))
 (plugins (byte csv_lwt.cma) (native csv_lwt.cmxs))
 (foreign_archives (native csv_lwt.a))
 (requires bytes lwt lwt.unix csv)
 (main_module_name Csv_lwt)
 (modes byte native)
 (modules
  (alias_module
   (name Csv_lwt__)
   (obj_name csv_lwt__)
   (visibility public)
   (impl))
  (main_module_name Csv_lwt)
  (modules
   ((name Csv_lwt) (obj_name csv_lwt) (visibility public) (impl) (intf))
   ((name Csv_utils) (obj_name csv_lwt__Csv_utils) (visibility public) (impl)))
  (wrapped true)))
