witch/witch.cabal

88 lines
1.8 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
2023-02-16 04:09:51 +03:00
version: 1.2.0.0
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
2022-01-11 15:30:31 +03:00
license-file: LICENSE.markdown
license: MIT
2020-11-14 19:54:45 +03:00
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
2022-01-11 15:30:31 +03:00
common library
2021-04-18 17:50:39 +03:00
build-depends:
2023-02-12 22:55:05 +03:00
, base >= 4.15 && < 4.18
, bytestring >= 0.10.12 && < 0.12
, containers >= 0.6.4 && < 0.7
2022-10-01 16:52:31 +03:00
, tagged >= 0.8.6 && < 0.9
2023-02-12 22:55:05 +03:00
, text >= 1.2.5 && < 1.3 || >= 2.0 && < 2.1
, time >= 1.9.3 && < 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
2023-02-12 22:55:05 +03:00
-Wno-missing-deriving-strategies
-Wno-missing-export-lists
-Wno-missing-exported-signatures
2023-02-12 22:55:05 +03:00
-Wno-missing-safe-haskell-mode
-Wno-prepositive-qualified-module
-Wno-redundant-constraints
2020-11-14 19:54:45 +03:00
-Wno-safe
-Wno-unsafe
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
2022-01-11 15:30:31 +03:00
common executable
import: library
build-depends: witch
ghc-options:
-rtsopts
-threaded
2022-01-11 15:36:00 +03:00
2021-04-18 17:27:12 +03:00
library
2022-01-11 15:30:31 +03:00
import: library
2021-04-18 17:27:12 +03:00
2022-09-08 23:03:40 +03:00
build-depends:
2023-02-12 22:55:05 +03:00
, template-haskell >= 2.17 && < 2.20
2021-04-18 17:27:12 +03:00
exposed-modules:
Witch
Witch.Encoding
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
2022-01-11 15:30:31 +03:00
hs-source-dirs: source/library
2021-04-18 17:27:12 +03:00
2022-09-08 17:05:47 +03:00
test-suite witch-test-suite
2022-01-11 15:30:31 +03:00
import: executable
2021-04-18 17:27:12 +03:00
2020-11-14 19:54:45 +03:00
build-depends:
2022-01-11 15:42:20 +03:00
, HUnit >= 1.6.1 && < 1.7
2023-02-13 00:01:17 +03:00
, transformers >= 0.5.6 && < 0.7
2022-01-11 15:30:31 +03:00
hs-source-dirs: source/test-suite
2020-11-14 19:54:45 +03:00
main-is: Main.hs
type: exitcode-stdio-1.0