2015-10-08 23:50:52 +03:00
|
|
|
-- Initial tasty-dejafu.cabal generated by cabal init. For further
|
|
|
|
-- documentation, see http://haskell.org/cabal/users-guide/
|
|
|
|
|
|
|
|
name: tasty-dejafu
|
2018-02-13 21:55:16 +03:00
|
|
|
version: 1.0.1.0
|
2015-10-08 23:50:52 +03:00
|
|
|
synopsis: Deja Fu support for the Tasty test framework.
|
2015-11-01 17:45:59 +03:00
|
|
|
|
|
|
|
description:
|
|
|
|
Integration between the <https://hackage.haskell.org/package/dejafu dejafu>
|
|
|
|
library for concurrency testing and
|
|
|
|
<https://hackage.haskell.org/package/tasty tasty>. This lets you
|
|
|
|
easily incorporate concurrency testing into your existing test
|
|
|
|
suites.
|
|
|
|
|
2015-10-08 23:50:52 +03:00
|
|
|
homepage: https://github.com/barrucadu/dejafu
|
|
|
|
license: MIT
|
|
|
|
license-file: LICENSE
|
|
|
|
author: Michael Walker
|
|
|
|
maintainer: mike@barrucadu.co.uk
|
2017-12-07 05:49:47 +03:00
|
|
|
copyright: (c) 2015--2017 Michael Walker
|
2015-10-08 23:50:52 +03:00
|
|
|
category: Testing
|
|
|
|
build-type: Simple
|
2018-02-16 20:56:04 +03:00
|
|
|
extra-source-files: README.markdown CHANGELOG.rst
|
2015-10-08 23:50:52 +03:00
|
|
|
cabal-version: >=1.10
|
|
|
|
|
2015-10-25 16:40:23 +03:00
|
|
|
source-repository head
|
|
|
|
type: git
|
|
|
|
location: https://github.com/barrucadu/dejafu.git
|
|
|
|
|
2016-04-03 16:26:31 +03:00
|
|
|
source-repository this
|
|
|
|
type: git
|
|
|
|
location: https://github.com/barrucadu/dejafu.git
|
2018-02-13 21:55:16 +03:00
|
|
|
tag: tasty-dejafu-1.0.1.0
|
2016-04-03 16:26:31 +03:00
|
|
|
|
2015-10-08 23:50:52 +03:00
|
|
|
library
|
|
|
|
exposed-modules: Test.Tasty.DejaFu
|
|
|
|
-- other-modules:
|
|
|
|
-- other-extensions:
|
2016-05-26 14:41:10 +03:00
|
|
|
build-depends: base >=4.8 && <5
|
2017-12-01 00:55:50 +03:00
|
|
|
, dejafu >=1.0 && <1.1
|
2017-02-20 06:17:22 +03:00
|
|
|
, random >=1.0 && <1.2
|
2016-05-26 14:41:10 +03:00
|
|
|
, tagged >=0.8 && <0.9
|
2018-01-09 13:46:57 +03:00
|
|
|
, tasty >=0.10 && <1.1
|
2015-10-08 23:50:52 +03:00
|
|
|
-- hs-source-dirs:
|
2016-06-22 13:20:22 +03:00
|
|
|
default-language: Haskell2010
|