name:               strict-base-types
version:            0.7
synopsis:           Strict variants of the types provided in base.
category:           Data
description:
  Since version 0.7 the functionality in this package
  have been merged into `strict`, `aeson` and `quickcheck-instances`
  packages, and lens functionality moved into `strict-lens` package.

license:            BSD3
license-file:       LICENSE
author:
  Roman Leshchinskiy <rl@cse.unsw.edu.au>,
  Simon Meier <iridcode@gmail.com>

maintainer:
  Bas van Dijk <v.dijk.bas@gmail.com>, Oleg Grenrus <oleg.grenrus@iki.fi>, Simon Meier <iridcode@gmail.com>

copyright:
  (c) 2006-2008 by Roman Leshchinskiy
  (c) 2013-2014 by Simon Meier

homepage:           https://github.com/haskell-strict/strict
cabal-version:      >=1.10
build-type:         Simple
tested-with:
  GHC ==7.8.4
   || ==7.10.3
   || ==8.0.2
   || ==8.2.2
   || ==8.4.4
   || ==8.6.5
   || ==8.8.3
   || ==8.10.1

extra-source-files: CHANGES

source-repository head
  type:     git
  location: https://github.com/haskell-strict/strict.git
  subdir:   strict-base-types

library
  default-language: Haskell2010
  ghc-options:      -Wall
  build-depends:
      aeson                 >=1.5.3.0 && <1.6
    , base                  >=4.7     && <5
    , quickcheck-instances  >=0.3.24  && <0.4
    , strict                >=0.4     && <0.4.1
    , strict-lens           >=0.4     && <0.5

  hs-source-dirs:   src
  exposed-modules:
    Data.Either.Strict
    Data.Maybe.Strict
    Data.Tuple.Strict