packages feed

hsini-0.5.1.2: hsini.cabal

-- This file has been generated from package.yaml by hpack version 0.28.2.
--
-- see: https://github.com/sol/hpack
--
-- hash: 0a9d3d220e23a6165acb4a43a8293ef95e41667b8afd689196d833adad1dba85

name:           hsini
version:        0.5.1.2
synopsis:       ini configuration files
description:    Library for reading and writing configuration files in INI format (see <https://en.wikipedia.org/wiki/INI_file>).
category:       Configuration, Data
maintainer:     Magnus Therning <magnus@therning.org>
license:        BSD3
license-file:   LICENSE
build-type:     Simple
cabal-version:  >= 1.10
extra-source-files:
    package.yaml
    stack.yaml

source-repository head
  type: git
  location: https://github.com/magthe/hsini.git

library
  exposed-modules:
      Data.Ini
      Data.Ini.Reader
      Data.Ini.Types
  other-modules:
      Data.Ini.Reader.Internals
  hs-source-dirs:
      src
  build-depends:
      base <5
    , bytestring
    , containers
    , mtl
    , parsec
  default-language: Haskell2010

test-suite hsini-tests
  type: exitcode-stdio-1.0
  main-is: Main.hs
  other-modules:
      Ini
      ReaderI
      Data.Ini
      Data.Ini.Reader
      Data.Ini.Reader.Internals
      Data.Ini.Types
      Paths_hsini
  hs-source-dirs:
      tst
      src
  build-depends:
      base
    , bytestring
    , containers
    , mtl
    , parsec
    , tasty
    , tasty-hunit
    , tasty-quickcheck
    , tasty-th
  default-language: Haskell2010