Declarative JSON data manipulation for OCaml
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

ocaml-json: drop redundant dune (modules ...) and unused fmt dep

Dune auto-discovers all .ml/.mli files in the library directory; the
explicit (modules ...) list added nothing. The fmt dep was added
earlier but is unused: json.ml does "module Fmt = Core.Fmt" and uses
the internal mini-Fmt in core.ml (Buenzli's design — avoids pulling
in fmt).

-2
-2
lib/dune
··· 1 1 (library 2 2 (name json) 3 3 (public_name json) 4 - (modules json value codec core) 5 4 (libraries 6 - fmt 7 5 (re_export loc)))