dejafu/dejafu-tests/dejafu-tests.cabal

90 lines
2.8 KiB
Plaintext
Raw Normal View History

-- Initial dejafu-tests.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: dejafu-tests
2016-05-12 16:34:32 +03:00
version: 0.4.0.0
synopsis: The test suite for dejafu
-- description:
homepage: https://github.com/barrucadu/dejafu
license: MIT
license-file: LICENSE
author: Michael Walker
maintainer: mike@barrucadu.co.uk
-- copyright:
-- category:
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
2018-02-12 01:28:39 +03:00
library
2018-02-13 02:01:00 +03:00
exposed-modules: Unit
2018-06-11 00:02:40 +03:00
, Unit.Predicates
2018-02-13 02:01:00 +03:00
, Unit.Properties
, Integration
, Integration.Async
, Integration.SingleThreaded
, Integration.MultiThreaded
, Integration.Refinement
, Integration.Litmus
, Integration.Regressions
2018-02-24 00:21:46 +03:00
, Integration.SCT
, Integration.Names
2016-03-31 16:45:55 +03:00
, Examples
2016-03-31 16:37:02 +03:00
, Examples.AutoUpdate
, Examples.ClassLaws
, Examples.Logger
2018-02-12 01:35:29 +03:00
, Examples.ParMonad
, Examples.ParMonad.Direct
, Examples.ParMonad.DirectInternal
, Examples.Philosophers
, Examples.SearchParty
2016-05-26 15:54:13 +03:00
, Examples.SearchParty.Impredicative
, Common
, QSemN
, Test.Tasty.Hedgehog
build-depends: base
2018-02-12 01:35:29 +03:00
, abstract-deque
, concurrency
, containers
2018-04-29 01:20:48 +03:00
, contravariant
2018-02-12 01:35:29 +03:00
, deepseq
, dejafu
, exceptions
, hedgehog
2018-02-12 01:35:29 +03:00
, mtl
, mwc-random
, random
, tasty
, tasty-expected-failure
, tasty-dejafu
2018-02-21 01:07:23 +03:00
, tasty-hunit
2018-02-12 01:35:29 +03:00
, vector
2018-02-12 01:28:39 +03:00
hs-source-dirs: lib
default-language: Haskell2010
2018-02-13 03:33:19 +03:00
ghc-options: -Wall
2018-02-12 01:28:39 +03:00
executable dejafu-tests
2018-06-24 11:55:28 +03:00
main-is: MainTest.hs
other-modules: Util
2018-02-12 01:28:39 +03:00
build-depends: base
, dejafu-tests
, tasty
2018-02-12 01:28:39 +03:00
hs-source-dirs: exe
default-language: Haskell2010
2018-02-13 03:33:19 +03:00
ghc-options: -Wall -threaded -rtsopts
2018-06-24 12:48:38 +03:00
executable dejafu-bench
main-is: MainBench.hs
other-modules: Util
build-depends: base
, criterion
, dejafu-tests
, tasty
hs-source-dirs: exe
default-language: Haskell2010
ghc-options: -Wall -threaded -rtsopts