(lang dune 3.20)
(name tyre)
(version 0.5)
(sections (lib .) (libexec .) (doc ../../doc/tyre))
(files
 (lib
  (META
   dune-package
   opam
   tyre.a
   tyre.cma
   tyre.cmi
   tyre.cmt
   tyre.cmti
   tyre.cmx
   tyre.cmxa
   tyre.ml
   tyre.mli))
 (libexec (tyre.cmxs))
 (doc (CHANGES.md LICENSE.md)))
(library
 (name tyre)
 (kind normal)
 (synopsis
  "Tyre is a set of combinators to build type-safe regular expressions")
 (archives (byte tyre.cma) (native tyre.cmxa))
 (plugins (byte tyre.cma) (native tyre.cmxs))
 (native_archives tyre.a)
 (requires re result seq)
 (main_module_name Tyre)
 (modes byte native)
 (modules
  (singleton
   (obj_name tyre)
   (visibility public)
   (source (path Tyre) (intf (path tyre.mli)) (impl (path tyre.ml))))))
