packages feed

salak-0.2.1: salak.cabal

cabal-version: 1.12
name: salak
version: 0.2.1
license: BSD3
license-file: LICENSE
copyright: (c) 2018 Daniel YU
maintainer: Daniel YU <leptonyu@gmail.com>
author: Daniel YU
homepage: https://github.com/leptonyu/salak#readme
synopsis: Configuration Loader
description:
    Configuration Loader for Production in Haskell
category: Library
build-type: Simple
extra-source-files:
    README.md
    test/salak.yml

library
    exposed-modules:
        Data.Salak
    hs-source-dirs: src
    other-modules:
        Data.Salak.Types
        Data.Salak.Environment
        Data.Salak.CommandLine
        Data.Salak.Aeson
        Data.Salak.Yaml
        Data.Salak.Operation
    default-language: Haskell2010
    ghc-options: -Wall -Wcompat -Wincomplete-record-updates
                 -Wincomplete-uni-patterns -Wredundant-constraints -fno-warn-orphans
                 -fno-warn-missing-signatures
    build-depends:
        aeson >=1.4.2.0 && <1.5,
        base >=4.11 && <5,
        directory >=1.3.3.0 && <1.4,
        filepath >=1.4.2.1 && <1.5,
        scientific >=0.3.6.2 && <0.4,
        text >=1.2.3.1 && <1.3,
        unordered-containers >=0.2.9.0 && <0.3,
        vector >=0.12.0.2 && <0.13,
        yaml >=0.11.0.0 && <0.12

test-suite spec
    type: exitcode-stdio-1.0
    main-is: Spec.hs
    hs-source-dirs: test src
    other-modules:
        Data.Salak
        Data.Salak.Aeson
        Data.Salak.CommandLine
        Data.Salak.Environment
        Data.Salak.Operation
        Data.Salak.Types
        Data.Salak.Yaml
        Paths_salak
    default-language: Haskell2010
    ghc-options: -Wall -Wcompat -Wincomplete-record-updates
                 -Wincomplete-uni-patterns -Wredundant-constraints -fno-warn-orphans
                 -fno-warn-missing-signatures
    build-depends:
        QuickCheck >=2.12.6.1 && <2.13,
        aeson >=1.4.2.0 && <1.5,
        aeson-pretty >=0.8.7 && <0.9,
        base >=4.11 && <5,
        bytestring >=0.10.8.2 && <0.11,
        directory >=1.3.3.0 && <1.4,
        filepath >=1.4.2.1 && <1.5,
        hspec ==2.*,
        scientific >=0.3.6.2 && <0.4,
        text >=1.2.3.1 && <1.3,
        unordered-containers >=0.2.9.0 && <0.3,
        vector >=0.12.0.2 && <0.13,
        yaml >=0.11.0.0 && <0.12