summaryrefslogtreecommitdiff
path: root/init-once.cabal
blob: a02dab5e5bbccf95145b30a8014af51868b9b8d3 (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
cabal-version:   3.0
name:            init-once
version:         0.1.0.0
license:         BSD-3-Clause
author:          Tom Smeding
maintainer:      Tom Smeding <tom@tomsmeding.com>
build-type:      Simple

library
  exposed-modules:
    InitOnce
  other-modules:
    InitOnce.TheMap
    InitOnce.Types
  build-depends:
    base >= 4.17,
    containers,
    template-haskell
  hs-source-dirs: src
  default-language: Haskell2010
  ghc-options: -Wall

test-suite hs-init-once-test
  type: exitcode-stdio-1.0
  main-is: Main.hs
  build-depends: base, init-once
  hs-source-dirs: test
  default-language: Haskell2010
  ghc-options: -Wall