forked from mstksg/typelits-witnesses
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.yaml
44 lines (36 loc) · 1.26 KB
/
package.yaml
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
name: typelits-witnesses
version: 0.4.0.0
synopsis: Existential witnesses, singletons, and classes for operations on GHC TypeLits
description: |
This library contains:
* A small specialized subset of the *singletons* library as it pertains to
`Nat` and `Symbol`, for when you need some simple functionality without
wanting to invoke the entire *singletons* library.
* Operations for manipulating these singletons and `KnownNat` and
`KnownSymbol` instances, such as addition and multiplication of
singletons/`KnownNat` instances.
* Operations for the comparison of `Nat`s in a way that works well with
*GHC.TypeLits*'s different comparison systems. This is helpful for
bridging together libraries that use different systems; this functionality
is not yet provided by *singletons*.
category: Data
author: Justin Le
maintainer: [email protected]
copyright: (c) Justin Le 2018
license: MIT
homepage: https://github.com/mstksg/typelits-witnesses
git: git://github.com/mstksg/typelits-witnesses.git
tested-with: GHC>=8.2
extra-source-files:
- README.md
- CHANGELOG.md
ghc-options:
- -Wall
- -Wredundant-constraints
- -Werror=incomplete-patterns
- -Wcompat
dependencies:
- base >=4.10 && <5
- dependent-sum
library:
source-dirs: src