(lang dune 1.8)
(name postgresql)
(library
 (name postgresql)
 (kind normal)
 (archives (byte postgresql.cma) (native postgresql.cmxa))
 (plugins (byte postgresql.cma) (native postgresql.cmxs))
 (foreign_objects postgresql_stubs.o)
 (foreign_archives
  (byte libpostgresql_stubs.a)
  (native postgresql.a libpostgresql_stubs.a))
 (requires threads bigarray)
 (main_module_name Postgresql)
 (modes byte native)
 (modules
  (alias_module
   (name Postgresql__)
   (obj_name postgresql__)
   (visibility public)
   (impl))
  (main_module_name Postgresql)
  (modules
   ((name Error_code)
    (obj_name postgresql__Error_code)
    (visibility public)
    (impl))
   ((name Error_field)
    (obj_name postgresql__Error_field)
    (visibility public)
    (impl))
   ((name Postgresql) (obj_name postgresql) (visibility public) (impl) (intf)))
  (wrapped true)))
