packages feed

to-1.1.0: to.cabal

name:                to
version:             1.1.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,
                       bytestring,
                       containers,
                       unordered-containers,
                       hashable,
                       text,
                       utf8-string
  hs-source-dirs:      src
  default-language:    Haskell2010
  ghc-options:         -Wall
                       -Wno-unticked-promoted-constructors

benchmark benches
  type:                exitcode-stdio-1.0
  hs-source-dirs:      bench
  main-is:             Main.hs
  build-depends:       base
                     , containers
                     , unordered-containers
                     , text
                     , gauge
  default-language:    Haskell2010
  ghc-options:         -Wall