packages feed

to-1.0.0: to.cabal

name:                to
version:             1.0.0
synopsis:            Simple, safe, boring type conversions
description:
  `to` contains type conversions for popular Haskell types. All provided
  conversions are safe and boring.

license:             BSD3
license-file:        LICENSE
author:              Artyom Kazak
maintainer:          Artyom Kazak <artyom@aelve.com>
homepage:            https://github.com/aelve/to
bug-reports:         https://github.com/aelve/to/issues
category:            Control
build-type:          Simple
extra-source-files:  CHANGELOG.md
tested-with:         GHC ==8.0.2, GHC ==8.2.2, GHC ==8.4.4, GHC ==8.6.4
cabal-version:       >=1.10

source-repository head
  type: git
  location: git@github.com:aelve/to.git

library
  exposed-modules:     To
  build-depends:
    base >=4.9 && <5,
    text,
    bytestring,
    utf8-string
  hs-source-dirs:      src
  default-language:    Haskell2010
  ghc-options:         -Wall
                       -Wno-unticked-promoted-constructors