This repository has been archived by the owner on Sep 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
rank1dynamic.cabal
45 lines (42 loc) · 1.73 KB
/
rank1dynamic.cabal
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
Name: rank1dynamic
Version: 0.4.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: Facundo Domínguez <[email protected]>
Bug-Reports: https://github.com/haskell-distributed/rank1dynamic/issues
Copyright: Well-Typed LLP, Tweag I/O Limited
Category: Data
Build-Type: Simple
Cabal-Version: >=1.10
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.8 && < 5,
binary >= 0.5 && < 0.9
HS-Source-Dirs: src
GHC-Options: -Wall
default-language: Haskell2010
Default-Extensions: EmptyDataDecls,
DeriveDataTypeable,
ViewPatterns
Test-Suite TestRank1Dynamic
Type: exitcode-stdio-1.0
Main-Is: test.hs
Build-Depends: base >= 4.6 && < 5,
HUnit >= 1.2 && < 1.7,
rank1dynamic,
test-framework >= 0.6 && < 0.9,
test-framework-hunit >= 0.2.0 && < 0.4
ghc-options: -Wall
default-language: Haskell2010
HS-Source-Dirs: tests