-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathextended-categories.cabal
32 lines (29 loc) · 1.41 KB
/
extended-categories.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
name: extended-categories
version: 0.2.0
synopsis: Extended Categories
description: An implementation of category theory which makes use of GHC's enriched kind system.
homepage: github.com/ian-mi/extended-categories
license: BSD3
license-file: LICENSE
author: Ian Milligan
maintainer: [email protected]
-- copyright:
category: Math
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
stability: experimental
source-repository head
type: git
location: [email protected]:ian-mi/extended-categories.git
source-repository this
type: git
location: [email protected]:ian-mi/extended-categories.git
tag: 0.2.0
library
exposed-modules: Category, Category.Product, Functor, Universal, Product, Coproduct, Terminal, NatTr, NatTr.Product, NatTr.Coproduct, Adjoint, Monoidal, Monad, Monad.Free
-- other-modules:
default-extensions: PolyKinds, DataKinds, TypeFamilies, ConstraintKinds, InstanceSigs, ScopedTypeVariables, MultiParamTypeClasses, FunctionalDependencies, FlexibleContexts, FlexibleInstances, UndecidableInstances, TypeOperators, GADTs, NoImplicitPrelude, RankNTypes
build-depends: base >=4.7 && <4.8, constraints >=0.3 && <0.5, tagged >=0.7 && <0.8, ghc-prim >=0.3 && <0.4
-- hs-source-dirs:
default-language: Haskell2010