;lib: depend on timeit

Allows easy benchmarking at ghci prompt and I expect will be used for
reporting timing info later.
This commit is contained in:
Simon Michael 2019-08-01 18:24:40 +02:00
parent 70986769ef
commit c14f22b975
2 changed files with 5 additions and 1 deletions

View File

@ -4,7 +4,7 @@ cabal-version: 1.12
-- --
-- see: https://github.com/sol/hpack -- see: https://github.com/sol/hpack
-- --
-- hash: 540aab47f6186c280e13c9bcc60863d8e29fc9830886c34aa95bfc9805623dad -- hash: f53d007c317d0d34ee5afecee41cbdfc43b6ae3b4ae9f119a5f7ad11bf231b29
name: hledger-lib name: hledger-lib
version: 1.14.99 version: 1.14.99
@ -139,6 +139,7 @@ library
, template-haskell , template-haskell
, text >=1.2 , text >=1.2
, time >=1.5 , time >=1.5
, timeit
, transformers >=0.2 , transformers >=0.2
, uglymemo , uglymemo
, utf8-string >=0.3.5 , utf8-string >=0.3.5
@ -242,6 +243,7 @@ test-suite doctests
, template-haskell , template-haskell
, text >=1.2 , text >=1.2
, time >=1.5 , time >=1.5
, timeit
, transformers >=0.2 , transformers >=0.2
, uglymemo , uglymemo
, utf8-string >=0.3.5 , utf8-string >=0.3.5
@ -347,6 +349,7 @@ test-suite easytests
, template-haskell , template-haskell
, text >=1.2 , text >=1.2
, time >=1.5 , time >=1.5
, timeit
, transformers >=0.2 , transformers >=0.2
, uglymemo , uglymemo
, utf8-string >=0.3.5 , utf8-string >=0.3.5

View File

@ -73,6 +73,7 @@ dependencies:
- template-haskell - template-haskell
- text >=1.2 - text >=1.2
- time >=1.5 - time >=1.5
- timeit
- transformers >=0.2 - transformers >=0.2
- uglymemo - uglymemo
- utf8-string >=0.3.5 - utf8-string >=0.3.5