aboutsummaryrefslogtreecommitdiff
path: root/hsm-status/hsm-status.cabal
blob: feeff93124acc3fa4c18ab2be2eca670c4de77d9 (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
36
37
38
39
40
cabal-version: 3.4
author:        Paul Oliver
build-type:    Simple
maintainer:    contact@pauloliver.dev
name:          hsm-status
version:       0.1.0.0

library
  build-depends:
    , base
    , binary
    , text

  exposed-modules:  Hsm.Status.Error
  ghc-options:      -Wall -Wunused-packages
  default-language: GHC2021

executable status
  build-depends:
    , base
    , binary
    , bytestring
    , containers
    , echo
    , effectful-core
    , hsm-core
    , hsm-gpio
    , log-effectful
    , resourcet-effectful
    , streamly-core
    , text

  main-is:          Main.hs
  other-modules:    Hsm.Status.Error
  ghc-options:      -Wall -Wunused-packages

  if !arch(x86_64)
    ghc-options: -optl=-mno-fix-cortex-a53-835769

  default-language: GHC2021