mirror of
https://github.com/barrucadu/dejafu.git
synced 2024-12-18 11:01:50 +03:00
2f0f51ceb6
The new 'concurrency' package is starting at version 1.0.0.0 because the API is already very mature (copied from base). This breaks the dejafu-0.2 compatibility of async-dejafu. Closes #51.
52 lines
1.6 KiB
Plaintext
52 lines
1.6 KiB
Plaintext
-- Initial dejafu-tests.cabal generated by cabal init. For further
|
|
-- documentation, see http://haskell.org/cabal/users-guide/
|
|
|
|
name: dejafu-tests
|
|
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
|
|
|
|
executable dejafu-tests
|
|
main-is: Main.hs
|
|
|
|
other-modules: Cases
|
|
, Cases.SingleThreaded
|
|
, Cases.MultiThreaded
|
|
, Cases.Litmus
|
|
|
|
, Examples
|
|
, Examples.AutoUpdate
|
|
, Examples.ClassLaws
|
|
, Examples.ClassLaws.Impredicative
|
|
, Examples.Logger
|
|
, Examples.Philosophers
|
|
, Examples.SearchParty
|
|
, Examples.SearchParty.Impredicative
|
|
|
|
, Utils
|
|
|
|
-- other-extensions:
|
|
build-depends: base
|
|
, concurrency
|
|
, containers
|
|
, dejafu
|
|
, exceptions
|
|
, HUnit
|
|
, hunit-dejafu
|
|
, QuickCheck
|
|
, test-framework
|
|
, test-framework-hunit
|
|
, test-framework-quickcheck2
|
|
-- hs-source-dirs:
|
|
default-language: Haskell2010
|