packages feed

bcp47-orphans-0.1.0.6: bcp47-orphans.cabal

cabal-version:      1.12
name:               bcp47-orphans
version:            0.1.0.6
license:            MIT
license-file:       LICENSE
copyright:          2019 Freckle Education
maintainer:         engineering@freckle.com
author:             Evan Rutledge Borden
homepage:           https://github.com/freckle/bcp47#readme
bug-reports:        https://github.com/freckle/bcp47/issues
synopsis:           BCP47 orphan instances
description:        Orphan instances for the BCP47 type
category:           Orphan Instances
build-type:         Simple
extra-source-files:
    README.md
    ChangeLog.md

source-repository head
    type:     git
    location: https://github.com/freckle/bcp47

library
    exposed-modules:
        Data.BCP47.Csv
        Data.BCP47.Esqueleto
        Data.BCP47.Hashable
        Data.BCP47.HttpApiData
        Data.BCP47.PathPieces
        Data.BCP47.Persist
        Data.BCP47.Serialise

    hs-source-dirs:   library
    other-modules:    Paths_bcp47_orphans
    default-language: Haskell2010
    build-depends:
        base >=4.7 && <5,
        bcp47,
        cassava,
        errors,
        esqueleto,
        hashable,
        http-api-data,
        path-pieces,
        persistent,
        serialise,
        text

test-suite spec
    type:             exitcode-stdio-1.0
    main-is:          Main.hs
    hs-source-dirs:   tests
    other-modules:
        Data.BCP47.CsvSpec
        Data.BCP47.PathPiecesSpec
        Data.BCP47.PersistSpec
        Data.BCP47.Roundtrip
        Data.BCP47.SerialiseSpec
        Paths_bcp47_orphans

    default-language: Haskell2010
    build-depends:
        QuickCheck,
        base >=4.7 && <5,
        bcp47,
        bcp47-orphans,
        cassava,
        hspec,
        path-pieces,
        persistent,
        serialise