ref: 38c2b0e6baebc43b2421bce9513599ec1ad3b84a
parent: 14fa45dfbac11b88b9abc8524eb1c642207a2602
author: Lennart Augustsson <lennart@augustsson.net>
date: Mon Nov 13 07:37:30 EST 2023
Update cabal
--- a/MicroHs.cabal
+++ b/MicroHs.cabal
@@ -19,12 +19,13 @@
Makefile
README.md
Tools/convertX.sh
- Tools/convertY.sh
Tools/Addcombs.hs
- comb/*.comb
+ Tools/Compress.hs
+ generated/mhs.c
ghc/**/*.hs
lib/**/*.hs
src/runtime/eval.c
+ src/runtime/*.h
tests/Makefile
tests/*.hs
tests/*.ref
@@ -38,7 +39,7 @@
hs-source-dirs: src ghc
ghc-options: -Wall -Wno-unrecognised-warning-flags -Wno-x-partial -F -pgmF ./Tools/convertX.sh -main-is MicroHs.Main
main-is: MicroHs/Main.hs
- default-extensions: ScopedTypeVariables PatternGuards TupleSections TypeSynonymInstances
+ default-extensions: ScopedTypeVariables PatternGuards TupleSections TypeSynonymInstances FlexibleInstances
other-modules: MicroHs.Compile
MicroHs.Desugar
MicroHs.Exp
@@ -45,11 +46,12 @@
MicroHs.Expr
MicroHs.Graph
MicroHs.Ident
+ MicroHs.IdentMap
+ MicroHs.Interactive
MicroHs.Lex
+ MicroHs.MakeCArray
MicroHs.Parse
MicroHs.StateIO
- MicroHs.IdentMap
- MicroHs.Interactive
MicroHs.TCMonad
MicroHs.Translate
MicroHs.TypeCheck
@@ -65,4 +67,6 @@
ghc-prim >= 0.5 && < 0.12,
mtl >= 2.0 && < 2.4,
time >= 1.1 && < 1.15,
- pretty >= 1.0 && < 1.2
+ pretty >= 1.0 && < 1.2,
+ temporary >= 1.3 && < 1.5,
+ process >= 1.6 && < 1.8
--
⑨