diff options
author | Tom Smeding <tom@tomsmeding.com> | 2025-02-19 22:53:02 +0100 |
---|---|---|
committer | Tom Smeding <tom@tomsmeding.com> | 2025-02-19 22:53:02 +0100 |
commit | 011bda94ea9ab0bdb43751d8d19963beb5a887a0 (patch) | |
tree | fd9dc640c8902ca53c741392b46beb7138f659fa /ad-dual.cabal |
Initial
Diffstat (limited to 'ad-dual.cabal')
-rw-r--r-- | ad-dual.cabal | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/ad-dual.cabal b/ad-dual.cabal new file mode 100644 index 0000000..09697f0 --- /dev/null +++ b/ad-dual.cabal @@ -0,0 +1,30 @@ +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 + 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 |