witch/witch.cabal

63 lines
1.3 KiB
Plaintext
Raw Normal View History

2020-11-14 20:22:08 +03:00
cabal-version: >= 1.10
2020-11-14 19:54:45 +03:00
name: witch
version: 0.0.0.5
synopsis: Convert values from one type into another.
description: Witch converts values from one type into another.
2020-11-14 19:54:45 +03:00
build-type: Simple
category: Data
2020-11-14 20:45:00 +03:00
extra-source-files: CHANGELOG.markdown README.markdown
2020-11-14 19:54:45 +03:00
license-file: LICENSE.txt
license: ISC
maintainer: Taylor Fausak
source-repository head
location: https://github.com/tfausak/witch
type: git
library
build-depends:
2021-04-10 21:06:37 +03:00
base >= 4.13.0 && < 4.16
, template-haskell >= 2.15.0 && < 2.18
2020-11-14 20:22:08 +03:00
default-language: Haskell2010
exposed-modules:
Witch
Witch.Cast
Witch.Identity
Witch.Instances
Witch.Lift
Witch.TryCast
Witch.TryCastException
Witch.Utility
2020-11-14 19:54:45 +03:00
ghc-options:
-Weverything
-Wno-implicit-prelude
-Wno-missing-deriving-strategies
-Wno-missing-export-lists
-Wno-missing-exported-signatures
-Wno-missing-safe-haskell-mode
-Wno-prepositive-qualified-module
-Wno-redundant-constraints
2020-11-14 19:54:45 +03:00
-Wno-safe
-Wno-unsafe
hs-source-dirs: src/lib
if impl(ghc >= 9.0)
hs-source-dirs: src/ghc-9.0
else
if impl(ghc >= 8.10)
hs-source-dirs: src/ghc-8.10
else
hs-source-dirs: src/ghc-8.8
2020-11-14 19:54:45 +03:00
test-suite test
build-depends:
base
2021-04-10 21:06:37 +03:00
, HUnit >= 1.6.2 && < 1.7
2020-11-14 19:54:45 +03:00
, witch
2020-11-14 20:22:08 +03:00
default-language: Haskell2010
2020-11-14 19:54:45 +03:00
hs-source-dirs: src/test
main-is: Main.hs
type: exitcode-stdio-1.0