-- Initial lens-toml-parser.cabal generated by cabal init.  For further 
-- documentation, see http://haskell.org/cabal/users-guide/

name:                lens-toml-parser
version:             0.1.0.4
synopsis:            Lenses for toml-parser
description:         This library provides lenses for toml-parser.
license:             ISC
license-file:        LICENSE
author:              Henry Till
maintainer:          henrytill@gmail.com
homepage:            https://github.com/xngns/lens-toml-parser
copyright:           Copyright (c) 2017-2020, Henry Till
category:            Language, Lenses
build-type:          Simple
cabal-version:       >=1.10
tested-with:         GHC == 8.0.2, GHC == 8.2.2, GHC == 8.4.4, GHC == 8.6.5, GHC == 8.8.3

extra-source-files:
  .gitignore
  .travis.yml
  ChangeLog.md
  README.md
  example/example-v0.4.0.toml

source-repository head
  type:     git
  location: https://github.com/xngns/lens-toml-parser.git

library
  exposed-modules:     TOML.Lens
  -- other-modules:       
  -- other-extensions:    
  build-depends:       base        >=4.8 && <5
                     , text        >=1.2 && <1.3
                     , time        >=1.5 && <1.11
                     , profunctors >=5.2 && <5.6
                     , toml-parser >=0.1 && <0.2
  hs-source-dirs:      src
  default-language:    Haskell2010
  ghc-options:         -Wall

test-suite tests
  type:                exitcode-stdio-1.0
  main-is:             Main.hs
  build-depends:       base        >=4.8 && <5
                     , containers  >=0.5 && <0.7
                     , text        >=1.2 && <1.3
                     , dwergaz     >=0.2 && <0.3
                     , toml-parser >=0.1 && <0.2
                     , lens-family >=1.2 && <1.3
                     , lens-toml-parser
  hs-source-dirs:      tests
  default-language:    Haskell2010
  ghc-options:         -Wall

test-suite hlint
  type:                exitcode-stdio-1.0
  main-is:             HLint.hs
  build-depends:       base
                     , hlint >= 1.9 && <3
  hs-source-dirs:      tests
  default-language:    Haskell2010
  ghc-options:         -Wall