packages feed

lift-type-0.1.0.0: lift-type.cabal

cabal-version: 1.12
name:           lift-type
version:        0.1.0.0
description:    Please see the README on GitHub at <https://github.com/githubuser/lift-type#readme>
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.7 && <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 >=4.7 && <5
    , lift-type
    , template-haskell
  default-language: Haskell2010