aboutsummaryrefslogtreecommitdiff
path: root/ad-dual.cabal
blob: 5d3ca39a8834cfa506b91556101a4e0f58d36e61 (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
41
42
43
44
45
cabal-version:   3.0
name:            ad-dual
version:         0.1.0.0
license:         BSD-3-Clause
author:          Tom Smeding
build-type:      Simple

library
  exposed-modules:
    Numeric.ADDual
    Numeric.ADDual.Internal
  other-modules:
  build-depends:
    base >= 4.14.3,
    transformers,
    vector
  hs-source-dirs: src
  default-language: Haskell2010
  ghc-options: -Wall

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

benchmark bench
  type: exitcode-stdio-1.0
  main-is: Main.hs
  build-depends:
    base,
    ad-dual,
    ad,
    criterion,
    deepseq,
    vector
  hs-source-dirs: bench
  default-language: Haskell2010
  ghc-options: -Wall