diff options
Diffstat (limited to 'chad-fast.cabal')
-rw-r--r-- | chad-fast.cabal | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/chad-fast.cabal b/chad-fast.cabal index ae8ddf4..8ff3a21 100644 --- a/chad-fast.cabal +++ b/chad-fast.cabal @@ -20,6 +20,7 @@ library AST.Weaken AST.Weaken.Auto CHAD + CHAD.Top CHAD.Types -- Compile Data @@ -39,6 +40,7 @@ library build-depends: base >= 4.19 && < 4.21, containers, + deepseq, -- template-haskell, process, transformers, @@ -64,3 +66,14 @@ test-suite test hedgehog, default-language: Haskell2010 ghc-options: -Wall -threaded + +benchmark bench + type: exitcode-stdio-1.0 + main-is: bench/Main.hs + build-depends: + chad-fast, + base, + criterion, + deepseq, + default-language: Haskell2010 + ghc-options: -Wall -threaded |