-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtype-equality.cabal
52 lines (47 loc) · 1.4 KB
/
type-equality.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
name: type-equality
version: 1.0.1
x-revision: 1
stability: provisional
cabal-version: >=1.10
build-type: Simple
author:
Oleg Grenrus <[email protected]>, Ryan Scott <[email protected]>, Erik Hesselink <[email protected]>, Martijn van Steenbergen
maintainer:
Oleg Grenrus <[email protected]>, Ryan Scott <[email protected]>, Erik Hesselink <[email protected]>
license: BSD3
license-file: LICENSE
homepage: https://github.com/hesselink/type-equality
category: Data, Dependent Types
synopsis: Data.Type.Equality compat package
description:
This library defines a propositional equality data type,
shims @Data.Type.Equality@ as well as possible for older GHCs (< 7.8).
.
@
data a :~: b where
\ Refl :: a :~: a
@
.
The module @Data.Type.Equality.Hetero@ shims @:~~:@ equality, for
compilers with @PolyKinds@
extra-source-files: CHANGELOG.md
tested-with:
GHC ==8.6.5
|| ==8.8.4
|| ==8.10.7
|| ==9.0.2
|| ==9.2.8
|| ==9.4.8
|| ==9.6.6
|| ==9.8.4
|| ==9.10.1
|| ==9.12.1
source-repository head
type: git
location: https://github.com/hesselink/type-equality
library
default-language: Haskell2010
build-depends: base >=4.12 && <4.22
hs-source-dirs: src-hetero
exposed-modules: Data.Type.Equality.Hetero
other-extensions: PolyKinds