2021-04-18 17:27:12 +03:00
|
|
|
cabal-version: 2.2
|
2021-04-10 20:34:26 +03:00
|
|
|
name: witch
|
2024-05-19 18:54:32 +03:00
|
|
|
version: 1.2.1.1
|
2021-04-10 20:34:26 +03:00
|
|
|
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
|
2024-05-19 18:50:19 +03:00
|
|
|
extra-doc-files:
|
|
|
|
CHANGELOG.md
|
|
|
|
README.md
|
|
|
|
|
|
|
|
license-file: LICENSE.txt
|
2022-01-11 15:30:31 +03:00
|
|
|
license: MIT
|
2020-11-14 19:54:45 +03:00
|
|
|
maintainer: Taylor Fausak
|
|
|
|
|
|
|
|
source-repository head
|
|
|
|
location: https://github.com/tfausak/witch
|
|
|
|
type: git
|
|
|
|
|
2021-12-04 23:26:06 +03:00
|
|
|
flag pedantic
|
|
|
|
default: False
|
|
|
|
manual: True
|
|
|
|
|
2022-01-11 15:30:31 +03:00
|
|
|
common library
|
2024-05-19 18:50:19 +03:00
|
|
|
build-depends: base ^>=4.18.0.0 || ^>=4.19.0.0 || ^>=4.20.0.0
|
2021-04-18 17:50:39 +03:00
|
|
|
build-depends:
|
2024-05-19 18:50:19 +03:00
|
|
|
bytestring ^>=0.11.4.0 || ^>=0.12.0.2,
|
|
|
|
containers ^>=0.6.7 || ^>=0.7,
|
|
|
|
tagged ^>=0.8.8,
|
|
|
|
text ^>=2.0.2 || ^>=2.1,
|
|
|
|
time ^>=1.12.2 || ^>=1.14,
|
|
|
|
|
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
|
2021-04-10 20:34:26 +03:00
|
|
|
-Wno-missing-exported-signatures
|
2023-03-18 21:27:42 +03:00
|
|
|
-Wno-missing-kind-signatures
|
2023-02-12 22:55:05 +03:00
|
|
|
-Wno-missing-safe-haskell-mode
|
|
|
|
-Wno-prepositive-qualified-module
|
2020-11-18 19:40:35 +03:00
|
|
|
-Wno-redundant-constraints
|
2020-11-14 19:54:45 +03:00
|
|
|
-Wno-safe
|
|
|
|
-Wno-unsafe
|
|
|
|
|
2021-12-04 23:26:06 +03:00
|
|
|
if flag(pedantic)
|
|
|
|
ghc-options:
|
|
|
|
-Werror
|
|
|
|
|
2023-11-04 21:01:15 +03:00
|
|
|
if impl(ghc >= 9.8)
|
|
|
|
ghc-options: -Wno-missing-role-annotations
|
|
|
|
|
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
|
2022-09-08 23:03:40 +03:00
|
|
|
build-depends:
|
2024-05-19 18:50:19 +03:00
|
|
|
template-haskell ^>=2.20.0.0 || ^>=2.21.0.0 || ^>=2.22.0.0
|
|
|
|
|
|
|
|
-- cabal-gild: discover source/library
|
2021-04-18 17:27:12 +03:00
|
|
|
exposed-modules:
|
|
|
|
Witch
|
2022-10-07 16:39:29 +03:00
|
|
|
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
|
2021-05-11 02:36:22 +03:00
|
|
|
Witch.TryFromException
|
2021-04-18 17:27:12 +03:00
|
|
|
Witch.Utility
|
2024-05-19 18:50:19 +03:00
|
|
|
|
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
|
2020-11-14 19:54:45 +03:00
|
|
|
build-depends:
|
2024-05-19 18:50:19 +03:00
|
|
|
HUnit ^>=1.6.2.0,
|
|
|
|
transformers ^>=0.6.1.0,
|
|
|
|
|
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
|