packages feed

summoner-1.3.0.1: test/golden/smallProject/smallProject.cabal

cabal-version:       2.0
name:                smallProject
version:             0.0.0
synopsis:            Small test project
description:         Small test project
license:             AllRightsReserved
author:              Kowainik
maintainer:          xrom.xkov@gmail.com
copyright:           2018 Kowainik
build-type:          Simple
extra-doc-files:     README.md
                   , CHANGELOG.md
tested-with:         GHC == 8.6.4

executable smallProject
  hs-source-dirs:      app
  main-is:             Main.hs

  build-depends:       base ^>= 4.12.0.0
                     
                     

  ghc-options:         -Wall
                       -threaded
                       -rtsopts
                       -with-rtsopts=-N
                       -Wincomplete-uni-patterns
                       -Wincomplete-record-updates
                       -Wcompat
                       -Widentities
                       -Wredundant-constraints
                       -fhide-source-paths
                       -Wmissing-export-lists
                       -Wpartial-fields

  default-language:    Haskell2010