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-12-01 07:01:30 -0800
commitf0854265f7a1b59078308965d33fe2583a5c0f9c (patch)
treed8b06110d84fce783f1cc91aa37155351c655b2c /hsm-core/hsm-core.cabal
Initial commitHEADmaster
Diffstat (limited to 'hsm-core/hsm-core.cabal')
-rw-r--r--hsm-core/hsm-core.cabal35
1 files changed, 35 insertions, 0 deletions
diff --git a/hsm-core/hsm-core.cabal b/hsm-core/hsm-core.cabal
new file mode 100644
index 0000000..60a8e2f
--- /dev/null
+++ b/hsm-core/hsm-core.cabal
@@ -0,0 +1,35 @@
+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
+ , composition-extra
+ , echo
+ , effectful-core
+ , log-base
+ , log-effectful
+ , optparse-applicative
+ , resourcet-effectful
+ , streamly-core
+ , text
+ , time
+ , yaml
+ , zeromq4-haskell
+
+ exposed-modules:
+ Hsm.Core.App
+ Hsm.Core.Fsm
+ Hsm.Core.Message
+ Hsm.Core.Zmq
+
+ ghc-options: -Wall -Wunused-packages
+ default-language: GHC2024