aboutsummaryrefslogtreecommitdiff
path: root/sharing-recovery.cabal
blob: 9e34bab8ac9a58ca5063a1cf4ee40efa0c97899f (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
cabal-version:   3.0
name:            sharing-recovery
version:         0.1.0.0
license:         BSD-3-Clause
author:          Tom Smeding
build-type:      Simple

library
  exposed-modules:
    Data.Expr.SharingRecovery
    Data.Expr.SharingRecovery.Internal
  other-modules:
    Data.StableName.Extra
  build-depends:
    base >=4.16,
    hashable,
    some,
    transformers,
    unordered-containers,
  hs-source-dirs: src
  default-language: Haskell2010
  ghc-options: -Wall

test-suite test
  type: exitcode-stdio-1.0
  main-is: Main.hs
  other-modules:
    Arith
    Arith.NonBase
    NonBaseTH
  hs-source-dirs: test
  build-depends:
    sharing-recovery,
    base,
    containers,
    template-haskell,
  default-language: Haskell2010
  ghc-options: -Wall