aboutsummaryrefslogtreecommitdiff
path: root/hsm-repl/hsm-repl.cabal
diff options
context:
space:
mode:
Diffstat (limited to 'hsm-repl/hsm-repl.cabal')
-rw-r--r--hsm-repl/hsm-repl.cabal44
1 files changed, 44 insertions, 0 deletions
diff --git a/hsm-repl/hsm-repl.cabal b/hsm-repl/hsm-repl.cabal
new file mode 100644
index 0000000..5d9a794
--- /dev/null
+++ b/hsm-repl/hsm-repl.cabal
@@ -0,0 +1,44 @@
+cabal-version: 3.8
+author: Paul Oliver <contact@pauloliver.dev>
+name: hsm-repl
+version: 0.1.0.0
+
+library
+ build-depends:
+ , base
+ , effectful-core
+ , effectful-plugin
+ , generic-data-functions
+ , haskeline
+ , hint
+ , hsm-log
+ , text-ansi
+
+ default-language: GHC2024
+ exposed-modules: Hsm.Repl
+ ghc-options:
+ -O2 -Wall -Werror -Wno-star-is-type -Wunused-packages
+ -fplugin=Effectful.Plugin
+
+executable test-repl
+ build-depends:
+ , base
+ , effectful-core
+ , effectful-plugin
+ , generic-data-functions
+ , haskeline
+ , hint
+ , hsm-log
+ , monad-loops
+ , text-ansi
+
+ default-language: GHC2024
+ ghc-options:
+ -O2 -Wall -Werror -Wno-star-is-type -Wunused-packages
+ -fplugin=Effectful.Plugin
+
+ if !arch(x86_64)
+ ghc-options: -optl=-mno-fix-cortex-a53-835769
+
+ main-is: Test/Repl.hs
+ other-modules: Hsm.Repl