Skip to content

Commit

Permalink
Clean up .cabal file
Browse files Browse the repository at this point in the history
  • Loading branch information
hvr committed Apr 3, 2018
1 parent 5aa68ef commit a25250b
Showing 1 changed file with 17 additions and 10 deletions.
27 changes: 17 additions & 10 deletions int-cast.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -21,25 +21,32 @@ source-repository head
location: https://github.com/hvr/int-cast.git

library
exposed-modules: Data.IntCast

default-language: Haskell2010
other-extensions:
CPP
DataKinds
TypeFamilies
TypeOperators
UndecidableInstances
other-extensions: CPP
DataKinds
TypeFamilies
TypeOperators
UndecidableInstances

build-depends: base >=4.7 && <4.12
if !impl(ghc>=7.10)
build-depends: nats >=0.1 && <1.1
build-depends: nats >=0.1 && <1.1

exposed-modules: Data.IntCast
ghc-options: -Wall

test-suite int-cast-test
default-language: Haskell2010
type: exitcode-stdio-1.0
hs-source-dirs: test .
hs-source-dirs: test
main-is: Suite.hs
ghc-options: -Wall
build-depends: int-cast, base, QuickCheck >=2.7 && < 2.10, test-framework ==0.8.*, test-framework-quickcheck2 ==0.3.*
build-depends: int-cast
, base
, QuickCheck ==2.11.*
, test-framework ==0.8.*
, test-framework-quickcheck2 ==0.3.*

if !impl(ghc>=7.10)
build-depends: nats

0 comments on commit a25250b

Please sign in to comment.