swh:1:snp:61dcfc0dd5674a0e65803e88039c122d9532074e
Raw File
Tip revision: 737eb32ffb359cdcd6f468bffa55f72b47a5b602 authored by Raphaƫl Proust on 14 September 2022, 12:24:31 UTC
export all type and module equalities when including Encoding
Tip revision: 737eb32
dune
(env
 (release
  (flags
   (:standard -noassert))))

(library
 (name data_encoding)
 (public_name data-encoding)
 (js_of_ocaml)
 (libraries json-data-encoding json-data-encoding-bson zarith zarith_stubs_js
   ezjsonm either)
 (preprocess
  (pps ppx_hash)))

(documentation
 (mld_files index tutorial))

(rule
 (targets tutorial.mld)
 (deps tutorial.md)
 (mode promote)
 (action
  (with-stdout-to
   %{targets}
   (run md2mld %{deps}))))
back to top