packages feed

data-standards-0.1.0.0: data-standards.cabal

name:               data-standards
author:             Samuel May
category:           Data
synopsis:           A collection of standards representable by simple data types.

copyright:          (c) 2018 Samuel May
license:            MPL-2.0
license-file:       LICENSE

version:            0.1.0.0
stability:          provisional
maintainer:         ag.eitilt@gmail.com

homepage:           https://github.com/ag-eitilt/data-standards
bug-reports:        https://github.com/ag-eitilt/data-standards/issues

description:        Type-safe representations of the country codes described by
                    the ISO 3166-1 specification.

cabal-version:      >=1.10
extra-source-files: ChangeLog.md
                  , README.md
build-type:         Simple
tested-with:        GHC ==8.0.2

source-repository head
  type:             git
  location:         git://github.com/ag-eitilt/data-standards.git

source-repository this
  type:             git
  location:         git://github.com/ag-eitilt/data-standards.git
  tag:              v0.1.0.0

library
  exposed-modules:  Data.Standards.ISO.Country.Primary
                  , Data.Standards.ISO.Country.Primary.Alpha2
                  , Data.Standards.ISO.Country.Primary.Alpha3
                  , Data.Standards.ISO.Country.Primary.Numeric
                  , Data.Standards.ISO.Country.Primary.Translation
  other-modules:    Data.Standards.ISO.Country.Primary.Common
  build-depends:    base >=4.9 && <4.10
                  , hashable >=1.2 && <1.3
                  , unordered-containers <0.3
  default-language: Haskell98
  ghc-options:      -Wall -Wcompat