packages feed

salak-yaml-0.2.8: salak-yaml.cabal

cabal-version: 1.12
name: salak-yaml
version: 0.2.8
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 for yaml
category: Library, Configuration
build-type: Simple
extra-source-files:
    README.md
    test/salak.yml

library
    exposed-modules:
        Salak.Load.Yaml
    hs-source-dirs: src
    other-modules:
        Paths_salak_yaml
    default-language: Haskell2010
    build-depends:
        aeson >=1.4.2.0 && <1.5,
        base >=4.10 && <5,
        mtl >=2.2.2 && <2.3,
        salak ==0.2.8,
        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:
        Salak.Load.Yaml
        Paths_salak_yaml
    default-language: Haskell2010
    build-depends:
        QuickCheck >=2.12.6.1 && <2.14,
        aeson >=1.4.2.0 && <1.5,
        base >=4.10 && <5,
        hspec ==2.*,
        mtl >=2.2.2 && <2.3,
        salak ==0.2.8,
        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