1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
|
name: constraints-extras
version: 0.4.0.1
synopsis: Utility package for constraints
description: Convenience functions and TH for working with constraints. See <https://github.com/obsidiansystems/constraints-extras/blob/develop/README.md README.md> for example usage.
category: Constraints
license: BSD3
license-file: LICENSE
author: Cale Gibbard, Ali Abrar
maintainer: maintainer@obsidian.systems
homepage: https://github.com/obsidiansystems/constraints-extras
bug-reports: https://github.com/obsidiansystems/constraints-extras/issues
copyright: Obsidian Systems LLC
build-type: Simple
cabal-version: 2.0
tested-with:
GHC ==8.6.5 || ==8.8.4 || ==8.10.7
|| ==9.0.2 || ==9.2.8 || ==9.4.8 || ==9.6.5 || ==9.8.2 || ==9.10.1
extra-doc-files: ChangeLog.md
extra-source-files: README.md
flag build-readme
default: True
library
exposed-modules: Data.Constraint.Extras
, Data.Constraint.Extras.TH
, Data.Constraint.Compose
, Data.Constraint.Flip
other-extensions: LambdaCase
, MultiParamTypeClasses
, QuasiQuotes
, TypeFamilies
, TypeOperators
, ConstraintKinds
, TemplateHaskell
build-depends: base >=4.9 && <4.21
, constraints >= 0.9 && < 0.15
, template-haskell >=2.11 && <2.23
hs-source-dirs: src
default-language: Haskell2010
executable readme
if !flag(build-readme)
buildable: False
build-depends: base
, aeson
, constraints
, constraints-extras
main-is: README.lhs
ghc-options: -Wall -optL -q
default-language: Haskell2010
source-repository head
type: git
location: git://github.com/obsidiansystems/constraints-extras.git
|