-
Notifications
You must be signed in to change notification settings - Fork 0
/
dynamic-haskell-plugin.cabal
69 lines (62 loc) · 2.05 KB
/
dynamic-haskell-plugin.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
name: dynamic-haskell-plugin
cabal-version: 1.24
build-type: Simple
version: 0.0.1
author: Matthías Páll Gissurarson
maintainer: [email protected]
synopsis: Weakly type programs with runtime-irrelevant types
description:
The Data Dynamic plugin allows the marshaling back and from to dynamics,
as well as allowing for dynamic dispatch on the Dynamic type.
category: Compiler Plugin
license: MIT
license-file: LICENSE
library
default-language: Haskell2010
build-depends: base >= 4 && < 5,
ghc >= 8 && < 9,
containers >= 0.6 && < 0.7
exposed-modules:
Data.Dynamic.Plugin
test-suite test_dyn
default-language: Haskell2010
ghc-options: -dynamic
type: exitcode-stdio-1.0
build-depends: base >= 4 && < 5,
ghc-prim >= 0.5,
ghc >= 8 && < 9,
containers >= 0.6 && < 0.7,
dynamic-haskell-plugin
default-extensions: DataKinds,
FlexibleInstances,
MultiParamTypeClasses,
FlexibleContexts,
TypeFamilies,
PolyKinds,
UndecidableInstances,
TypeOperators,
TypeApplications,
ScopedTypeVariables,
RoleAnnotations
main-is: Tests/Test.hs
test-suite test_message
default-language: Haskell2010
type: exitcode-stdio-1.0
build-depends: base >= 4 && < 5,
ghc-prim >= 0.5,
ghc >= 8 && < 9,
containers >= 0.6 && < 0.7,
dynamic-haskell-plugin
main-is: Tests/Message.hs
test-suite test_message_class
default-language: Haskell2010
type: exitcode-stdio-1.0
build-depends: base >= 4 && < 5,
ghc-prim >= 0.5,
ghc >= 8 && < 9,
containers >= 0.6 && < 0.7,
dynamic-haskell-plugin
main-is: Tests/MessageClass.hs
Source-repository head
Type: git
Location: https://github.com/tritlo/dynamic-haskell-plugin.git