witch/witch.cabal

99 lines
2.0 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
2021-11-25 16:32:23 +03:00
version: 0.3.4.1
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
flag pedantic
default: False
description: Enables @-Werror@, which turns warnings into errors.
manual: True
2021-04-18 17:27:12 +03:00
common basics
2021-04-18 17:50:39 +03:00
build-depends:
2021-11-24 18:37:36 +03:00
, base >= 4.10.0 && < 4.17
, bytestring >= 0.10.8 && < 0.12
2021-05-27 03:03:34 +03:00
, containers >= 0.5.10 && < 0.7
, text >= 1.2.3 && < 1.3
2021-07-10 21:24:42 +03:00
, time >= 1.9.1 && < 1.13
2020-11-14 20:22:08 +03:00
default-language: Haskell2010
2020-11-14 19:54:45 +03:00
ghc-options:
-Weverything
2021-05-11 01:51:22 +03:00
-Wno-all-missed-specialisations
2020-11-14 19:54:45 +03:00
-Wno-implicit-prelude
2021-05-27 03:03:34 +03:00
-Wno-missed-specialisations
-Wno-missing-exported-signatures
-Wno-redundant-constraints
2020-11-14 19:54:45 +03:00
-Wno-safe
-Wno-unsafe
2021-05-27 03:03:34 +03:00
if impl(ghc >= 8.4)
ghc-options:
-Wno-missing-export-lists
2021-05-27 02:17:25 +03:00
if impl(ghc >= 8.8)
ghc-options:
-Wno-missing-deriving-strategies
2021-04-11 17:16:45 +03:00
if impl(ghc >= 8.10)
ghc-options:
-Wno-missing-safe-haskell-mode
-Wno-prepositive-qualified-module
if impl(ghc >= 9.2)
ghc-options:
-Wno-missing-kind-signatures
2021-04-11 17:16:45 +03:00
if flag(pedantic)
ghc-options:
-Werror
2021-04-18 17:27:12 +03:00
library
import: basics
build-depends:
2021-11-24 18:40:30 +03:00
, template-haskell >= 2.12.0 && < 2.19
2021-04-18 17:27:12 +03:00
exposed-modules:
Witch
2021-05-11 02:22:57 +03:00
Witch.From
2021-04-18 17:27:12 +03:00
Witch.Instances
Witch.Lift
2021-05-11 02:31:18 +03:00
Witch.TryFrom
Witch.TryFromException
2021-04-18 17:27:12 +03:00
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-05-28 05:26:16 +03:00
, HUnit >= 1.6.2 && < 1.7
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