cabal-version: 2.4 name: safe-gen version: 1.0.1 license: BSD-3-Clause build-type: Simple license-file: LICENSE author: Jonas Carpay maintainer: Jonas Carpay copyright: 2023 Jonas Carpay tested-with: GHC ==8.6.5 || ==8.8.3 || ==8.10.7 || ==9.0.2 || ==9.2.2 synopsis: Recursive Arbitrary instances without headaches homepage: https://github.com/xc-jp/safe-gen#readme category: Testing extra-doc-files: CHANGELOG.md README.md description: Write and derive Arbitrary instances for recursive data without worrying about termination. source-repository head type: git location: git://github.com/xc-jp/safe-gen.git common common-options build-depends: base >=4.9 && <5 default-language: Haskell2010 ghc-options: -Wall -Wcompat -Widentities -Wincomplete-uni-patterns -Wincomplete-record-updates -Wredundant-constraints -fhide-source-paths -Wpartial-fields library import: common-options hs-source-dirs: src exposed-modules: Test.QuickCheck.SafeGen Test.QuickCheck.SafeGen.Generic other-modules: Test.QuickCheck.SafeGen.Internal build-depends: QuickCheck test-suite safe-gen-test import: common-options type: exitcode-stdio-1.0 hs-source-dirs: test main-is: Spec.hs build-depends: , hspec , HUnit , QuickCheck , safe-gen ghc-options: -threaded -rtsopts -with-rtsopts=-N