witch/witch.cabal

74 lines
1.5 KiB
Plaintext
Raw Normal View History

2021-04-18 17:27:12 +03:00
cabal-version: 2.2
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
2021-04-18 17:27:12 +03:00
common basics
build-depends: base >= 4.13.0 && < 4.16
2020-11-14 20:22:08 +03:00
default-language: Haskell2010
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-redundant-constraints
2020-11-14 19:54:45 +03:00
-Wno-safe
-Wno-unsafe
2021-04-11 17:16:45 +03:00
if impl(ghc >= 8.10)
ghc-options:
-Wno-missing-safe-haskell-mode
-Wno-prepositive-qualified-module
2021-04-18 17:27:12 +03:00
library
import: basics
build-depends:
, template-haskell >= 2.15.0 && < 2.18
exposed-modules:
Witch
Witch.Cast
Witch.Identity
Witch.Instances
Witch.Lift
Witch.TryCast
Witch.TryCastException
Witch.Utility
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
2021-04-18 17:27:12 +03:00
import: basics
2020-11-14 19:54:45 +03:00
build-depends:
2021-04-17 20:20:06 +03:00
, hspec >= 2.7.9 && < 2.8
2020-11-14 19:54:45 +03:00
, witch
2021-04-18 17:27:12 +03:00
ghc-options:
-rtsopts
-threaded
-Wno-all-missed-specialisations
2020-11-14 19:54:45 +03:00
hs-source-dirs: src/test
main-is: Main.hs
type: exitcode-stdio-1.0