cabal-version: 2.4 name: cabal-full version: 0.0.0.0 synopsis: Cabal-only example with all integrations description: Cabal-only example with all integrations homepage: https://github.com/kowainik/cabal-full bug-reports: https://github.com/kowainik/cabal-full/issues license: BSD-3-Clause license-file: LICENSE author: Kowainik maintainer: Kowainik copyright: 2020 Kowainik category: Testing build-type: Simple extra-doc-files: README.md CHANGELOG.md tested-with: GHC == 8.4.4 GHC == 8.6.5 GHC == 8.8.3 source-repository head type: git location: https://github.com/kowainik/cabal-full.git common common-options build-depends: base >= 4.11.1.0 && < 4.14 , relude mixins: base hiding (Prelude) , relude (Relude as Prelude) ghc-options: -Wall -Wcompat -Widentities -Wincomplete-uni-patterns -Wincomplete-record-updates if impl(ghc >= 8.0) ghc-options: -Wredundant-constraints if impl(ghc >= 8.2) ghc-options: -fhide-source-paths if impl(ghc >= 8.4) ghc-options: -Wmissing-export-lists -Wpartial-fields if impl(ghc >= 8.8) ghc-options: -Wmissing-deriving-strategies default-language: Haskell2010 default-extensions: DeriveGeneric TypeApplications library import: common-options hs-source-dirs: src exposed-modules: CabalFull executable cabal-full import: common-options hs-source-dirs: app main-is: Main.hs build-depends: cabal-full ghc-options: -threaded -rtsopts -with-rtsopts=-N test-suite cabal-full-test import: common-options type: exitcode-stdio-1.0 hs-source-dirs: test main-is: Spec.hs build-depends: cabal-full ghc-options: -threaded -rtsopts -with-rtsopts=-N benchmark cabal-full-benchmark import: common-options type: exitcode-stdio-1.0 hs-source-dirs: benchmark main-is: Main.hs build-depends: gauge , cabal-full ghc-options: -threaded -rtsopts -with-rtsopts=-N