Gbury / ocaml-memgraph

A small library to output memory graph for ocaml values
MIT License
35 stars 3 forks source link

[feature wish] do not depend on unix in the core package #7

Open Armael opened 10 months ago

Armael commented 10 months ago

Using memgraph with js_of_ocaml currently raises a few warnings because of the dependency on unix (for Dot.to_file). It would be slightly cleaner to avoid depending on unix in the core library, and expose file-related helpers in a separate package.

Gbury commented 10 months ago

That's a good point, I'll try and split the Unix-related things into a separate package when i have the time to do so.