summaryrefslogtreecommitdiff
path: root/hsm-core/hsm-core.cabal
diff options
context:
space:
mode:
authorPaul Oliver <contact@pauloliver.dev>2024-08-24 11:57:18 -0700
committerPaul Oliver <contact@pauloliver.dev>2024-10-14 13:56:27 -0700
commit70d3e37b1a088209fe84abf07a39d14dec116c6b (patch)
treecd7779f004080c02b1fc6b1327c43ec2dd4e02d5 /hsm-core/hsm-core.cabal
Initial commitHEADmaster
Diffstat (limited to 'hsm-core/hsm-core.cabal')
-rw-r--r--hsm-core/hsm-core.cabal39
1 files changed, 39 insertions, 0 deletions
diff --git a/hsm-core/hsm-core.cabal b/hsm-core/hsm-core.cabal
new file mode 100644
index 0000000..334f144
--- /dev/null
+++ b/hsm-core/hsm-core.cabal
@@ -0,0 +1,39 @@
+cabal-version: 3.4
+author: Paul Oliver
+build-type: Simple
+maintainer: contact@pauloliver.dev
+name: hsm-core
+version: 0.1.0.0
+
+library
+ build-depends:
+ , aeson
+ , base
+ , binary
+ , bytestring
+ , composition
+ , echo
+ , effectful-core
+ , log-base
+ , log-effectful
+ , mtl
+ , optparse-applicative
+ , pipes
+ , resourcet
+ , resourcet-effectful
+ , safe-exceptions
+ , text
+ , time
+ , yaml
+ , zeromq4-haskell
+
+ exposed-modules:
+ Hsm.Core.App
+ Hsm.Core.Fsm
+ Hsm.Core.LogIO
+ Hsm.Core.Message
+ Hsm.Core.Pipes
+ Hsm.Core.Zmq
+
+ ghc-options: -Wall -Wunused-packages
+ default-language: GHC2024