summaryrefslogtreecommitdiff
path: root/hsm-core/hsm-core.cabal
blob: 60a8e2f8a48468f539c2e86be2bf9ed476576516 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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