flay-0.5: flay.cabal
cabal-version: 1.18
name: flay
version: 0.5
author: Renzo Carbonara
maintainer: renλren!zone
copyright: Renzo Carbonara 2017
license: BSD3
license-file: LICENSE.txt
extra-source-files: README.md CHANGELOG.md
category: Data, Generics
build-type: Simple
synopsis: Generic programming for higher-kinded types.
description: Generic programming for higher-kinded types.
homepage: https://github.com/k0001/flay
bug-reports: https://github.com/k0001/flay/issues
source-repository head
type: git
location: https://github.com/k0001/flay
library
hs-source-dirs: src
default-language: Haskell2010
ghcjs-options: -Wall -O3
ghc-options: -Wall -O2
exposed-modules: Flay
build-depends:
base >=4.9 && <5.0,
constraints,
transformers
test-suite tests
default-language: Haskell2010
type: exitcode-stdio-1.0
hs-source-dirs: tests
main-is: Main.hs
build-depends:
base >=4.9 && <5.0,
flay,
tasty,
tasty-quickcheck,
transformers