-- Initial app-settings.cabal generated by cabal init. For further -- documentation, see http://haskell.org/cabal/users-guide/ name: app-settings version: 0.1.0.0 synopsis: A library to manage application settings (INI file-like) -- description: homepage: https://github.com/emmanueltouzery/app-settings license: BSD3 license-file: LICENSE author: Emmanuel Touzery maintainer: etouzery@gmail.com -- copyright: category: Configuration build-type: Simple -- extra-source-files: cabal-version: >=1.10 library exposed-modules: Data.AppSettings other-modules: Data.Serialization -- other-extensions: build-depends: base >=4.6 && <4.7, mtl == 2.1.*, containers == 0.5.*, directory == 1.2.*, text >= 0.10, parsec == 3.1.* -- hs-source-dirs: default-language: Haskell2010 Ghc-Options: -Wall test-suite tests type: exitcode-stdio-1.0 hs-source-dirs: ., tests main-is: Tests.hs default-language: Haskell2010 build-depends: base, hspec >= 1.8 && <1.9, HUnit >= 1.2 && <1.3, mtl == 2.1.*, containers == 0.5.*, directory == 1.2.*, text >= 0.10, parsec == 3.1.* Ghc-Options: -Wall