(lang dune 3.21)
(name react)
(version 1.2.2)
(sections
 (lib /usr/lib/ocaml/react)
 (libexec /usr/lib/ocaml/react)
 (doc /usr/doc/react))
(files
 (lib
  (META
   dune-package
   opam
   react.a
   react.cma
   react.cmi
   react.cmt
   react.cmti
   react.cmx
   react.cmxa
   react.ml
   react.mli
   top/react_top.a
   top/react_top.cma
   top/react_top.cmi
   top/react_top.cmt
   top/react_top.cmx
   top/react_top.cmxa
   top/react_top.ml))
 (libexec (react.cmxs top/react_top.cmxs))
 (doc (CHANGES.md LICENSE.md README.md)))
(library
 (name react)
 (kind normal)
 (synopsis "Declarative events and signals for OCaml")
 (archives (byte react.cma) (native react.cmxa))
 (plugins (byte react.cma) (native react.cmxs))
 (native_archives react.a)
 (modes byte native)
 (modules
  (singleton
   (obj_name react)
   (visibility public)
   (source (path React) (intf (path react.mli)) (impl (path react.ml))))))
(library
 (name react.top)
 (kind normal)
 (archives (byte top/react_top.cma) (native top/react_top.cmxa))
 (plugins (byte top/react_top.cma) (native top/react_top.cmxs))
 (native_archives top/react_top.a)
 (requires compiler-libs.toplevel)
 (modes byte native)
 (modules
  (singleton
   (obj_name react_top)
   (visibility public)
   (source (path React_top) (impl (path top/react_top.ml))))))
