rank1dynamic-0.2.0.1: rank1dynamic.cabal
Name: rank1dynamic
Version: 0.2.0.1
Synopsis: Like Data.Dynamic/Data.Typeable but with support for rank-1 polymorphic types
Description: "Data.Typeable" and "Data.Dynamic" only support monomorphic types.
In this package we provide similar functionality but with
support for rank-1 polymorphic types.
Homepage: http://haskell-distributed.github.com
License: BSD3
License-File: LICENSE
Author: Edsko de Vries
Maintainer: watson.timothy@gmail.com
Bug-Reports: https://cloud-haskell.atlassian.net/browse/RANKNDYN
Copyright: Well-Typed LLP
Category: Data
Build-Type: Simple
Cabal-Version: >=1.8
extra-source-files: ChangeLog
Source-Repository head
Type: git
Location: https://github.com/haskell-distributed/rank1dynamic
Library
Exposed-Modules: Data.Rank1Dynamic,
Data.Rank1Typeable
Build-Depends: base >= 4.4 && < 5,
ghc-prim >= 0.2 && < 0.4,
binary >= 0.5 && < 0.8
HS-Source-Dirs: src
GHC-Options: -Wall
Extensions: ConstraintKinds,
EmptyDataDecls,
ExistentialQuantification,
DeriveDataTypeable,
KindSignatures,
PolyKinds,
RankNTypes,
StandaloneDeriving,
ViewPatterns,
CPP
Test-Suite TestRank1Dynamic
Type: exitcode-stdio-1.0
Main-Is: test.hs
Build-Depends: base >= 4.4 && < 5,
HUnit >= 1.2 && < 1.3,
rank1dynamic,
test-framework >= 0.6 && < 0.9,
test-framework-hunit >= 0.2.0 && < 0.4
if impl(ghc >= 7.8)
Build-Depends: constraints >= 0.4 && < 0.5
ghc-options: -Wall -Werror
Extensions: CPP
HS-Source-Dirs: tests