1
1
mirror of https://github.com/coot/free-category.git synced 2024-11-23 09:55:43 +03:00
free-category/free-category.cabal
Marcin Szamotulski adbb6c3550
Initial version
2018-11-03 17:52:30 +01:00

59 lines
1.4 KiB
Plaintext

name: free-category
version: 0.0.1.0
synopsis: Free category
description: Free categories
category: Algebra, Control, Monads, Category
homepage: https://github.com/coot/free-category#readme
bug-reports: https://github.com/coot/free-category/issues
author: Marcin Szamotulski
maintainer: profunctor@pm.me
copyright: (c) 2018 Marcin Szamotulski
license: MPL-2.0
license-file: LICENSE
build-type: Simple
cabal-version: >= 1.10
extra-source-files:
ChangeLog.md
README.md
source-repository head
type: git
location: https://github.com/coot/free-category
library
exposed-modules:
Control.Arrow.Free
Control.Category.Free
other-modules:
Paths_free_category
hs-source-dirs:
src
default-extensions:
ConstraintKinds
DataKinds
DeriveFunctor
EmptyDataDecls
FlexibleInstances
FlexibleContexts
GADTs
KindSignatures
InstanceSigs
MultiParamTypeClasses
OverloadedStrings
PolyKinds
RankNTypes
ScopedTypeVariables
TupleSections
TypeApplications
TypeFamilies
build-depends:
base >= 4.9 && <5
, free-algebras >= 0.0.6.0
ghc-options:
-Wall
-fwarn-incomplete-record-updates
-fwarn-incomplete-uni-patterns
-fwarn-redundant-constraints
-fwarn-deprecations
default-language: Haskell2010