cabal-version: 2.2

author: Mitchell Dalvi Rosen
build-type: Simple
category: Testing
description: This package provides a Tasty provider for Hspec test suites.
homepage: https://github.com/mitchellwrosen/tasty-hspec
license-file: LICENSE
license: BSD-3-Clause
maintainer: Mitchell Dalvi Rosen <mitchellwrosen@gmail.com>
name: tasty-hspec
synopsis: Hspec support for the Tasty test framework.
tested-with: GHC == 9.6.5, GHC == 9.8.2, GHC == 9.10.1
version: 1.2.0.4
x-revision: 5

extra-doc-files:
  .gitignore
  CHANGELOG.md
  README.md

extra-source-files:
  examples/example.hs

source-repository head
  type:     git
  location: https://github.com/mitchellwrosen/tasty-hspec.git

library
  build-depends:
    base ^>= 4.11 || ^>= 4.12 || ^>= 4.13 || ^>= 4.14 || ^>= 4.15 || ^>= 4.16 || ^>= 4.17 || ^>= 4.18 || ^>= 4.19 || ^>= 4.20,
    hspec ^>= 2.11.0,
    hspec-api ^>= 2.11.0,
    hspec-core ^>= 2.11.0,
    QuickCheck ^>= 2.7 || ^>= 2.8 || ^>= 2.9 || ^>= 2.10 || ^>= 2.11 || ^>= 2.12 || ^>= 2.13 || ^>= 2.14 || ^>= 2.15,
    tasty ^>= 1.3 || ^>= 1.4 || ^>= 1.5,
    tasty-smallcheck >= 0.1 && < 0.9,
    tasty-quickcheck ^>= 0.9.1 || ^>= 0.10 || ^>= 0.11,
  default-extensions:
    LambdaCase
    ScopedTypeVariables
  default-language: Haskell2010
  exposed-modules: Test.Tasty.Hspec
  ghc-options: -Wall
  if impl(ghc >= 8.0)
    ghc-options: -Wcompat
  hs-source-dirs: src