Following the recommended project layout of Dune, I've shifted the different libraries and executables we have to lib/ and main/ respectively. Ideally code for executables should go in the src/ folder, but since that is already used I decided to go with a main folder instead.
The majority of the diffs only involves shifting of files and replacing parsing/hip.exe to main/hip.exe.
This also conveniently resolves #3, though I do note a few unused files in the folder, such as houdini.ml and sleek.ml. Perhaps a cleanup is in order?
Following the recommended project layout of Dune, I've shifted the different libraries and executables we have to
lib/
andmain/
respectively. Ideally code for executables should go in thesrc/
folder, but since that is already used I decided to go with amain
folder instead.The majority of the diffs only involves shifting of files and replacing
parsing/hip.exe
tomain/hip.exe
.This also conveniently resolves #3, though I do note a few unused files in the folder, such as
houdini.ml
andsleek.ml
. Perhaps a cleanup is in order?