lift-type-0.1.2.0: lift-type.cabal
cabal-version: 1.12
name: lift-type
version: 0.1.2.0
description: Lift your types from a Typeable constraint to a Template Haskell type
synopsis: Lift a type from a Typeable constraint to a Template Haskell type
homepage: https://github.com/parsonsmatt/lift-type#readme
bug-reports: https://github.com/parsonsmatt/lift-type/issues
author: Matt Parsons
maintainer: parsonsmatt@gmail.com
copyright: 2021 Matt Parsons
license: BSD3
license-file: LICENSE
build-type: Simple
extra-source-files:
README.md
ChangeLog.md
source-repository head
type: git
location: https://github.com/parsonsmatt/lift-type
library
exposed-modules:
LiftType
hs-source-dirs:
src
build-depends:
base >= 4.10 && <5
, template-haskell
default-language: Haskell2010
test-suite lift-type-test
type: exitcode-stdio-1.0
main-is: Spec.hs
hs-source-dirs:
test
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends:
base
, lift-type
, template-haskell
, hspec
, ghc-prim
default-language: Haskell2010