My own corner of monopam
2
fork

Configure Feed

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

ocaml-s3, ocaml-scaleway: add eio.unix to lib/dune

Both .mli files reference Eio_unix.Stdenv.base in their public types.
Without eio.unix in (libraries ...) the cmi for Eio_unix isn't on the
include path and downstream consumers see 'Unbound module Eio_unix'.
Surfaced after the Dead_lib pass pruned the deps list, which made the
missing eio.unix visible.

+12 -1
+1
ocaml-s3/lib/dune
··· 8 8 astring 9 9 unix 10 10 eio 11 + eio.unix 11 12 nox-http 12 13 requests 13 14 retry
+11 -1
ocaml-scaleway/lib/dune
··· 1 1 (library 2 2 (name scaleway) 3 3 (public_name scaleway) 4 - (libraries nox-yaml nox-yaml.json nox-json bos fmt fpath logs requests eio)) 4 + (libraries 5 + nox-yaml 6 + nox-yaml.json 7 + nox-json 8 + bos 9 + fmt 10 + fpath 11 + logs 12 + requests 13 + eio 14 + eio.unix))