cabal-version: 1.12
name:           record-impl
version:        0.0.0.1
description:    Please see the README on GitHub at <https://github.com/parsonsmatt/record-impl#readme>
homepage:       https://github.com/parsonsmatt/record-impl#readme
bug-reports:    https://github.com/parsonsmatt/record-impl/issues
author:         Matt Parsons
maintainer:     parsonsmatt@gmail.com
copyright:      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/record-impl

library
  exposed-modules:
      Impl.TH
      Impl
  hs-source-dirs:
      src
  build-depends:
      base >= 4.16 && <5
    , template-haskell
    , time
    , containers
    , lens
  ghc-options:
    -Wall
  default-language: Haskell2010

test-suite impl-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
    , record-impl
    , time
  default-language: Haskell2010
  other-modules:
    Example