7000c79
name:          lens-aeson
7000c79
category:      Numeric
7000c79
version:       1.1.1
7000c79
x-revision: 1
7000c79
license:       MIT
7000c79
cabal-version: >= 1.10
7000c79
license-file:  LICENSE
7000c79
author:        Edward A. Kmett
7000c79
maintainer:    Edward A. Kmett <ekmett@gmail.com>
7000c79
stability:     provisional
7000c79
homepage:      http://github.com/lens/lens-aeson/
7000c79
bug-reports:   http://github.com/lens/lens-aeson/issues
7000c79
copyright:
7000c79
  Copyright (C) 2012 Paul Wilson
7000c79
  Copyright (C) 2013 Edward A. Kmett
7000c79
build-type:    Simple
7000c79
tested-with:   GHC == 7.4.2
7000c79
             , GHC == 7.6.3
7000c79
             , GHC == 7.8.4
7000c79
             , GHC == 7.10.3
7000c79
             , GHC == 8.0.2
7000c79
             , GHC == 8.2.2
7000c79
             , GHC == 8.4.4
7000c79
             , GHC == 8.6.5
7000c79
             , GHC == 8.8.3
7000c79
             , GHC == 8.10.1
7000c79
synopsis:      Law-abiding lenses for aeson
7000c79
description:   Law-abiding lenses for aeson.
7000c79

7000c79
extra-source-files:
7000c79
  .gitignore
7000c79
  .hlint.yaml
7000c79
  .vim.custom
7000c79
  AUTHORS.markdown
7000c79
  README.markdown
7000c79
  CHANGELOG.markdown
7000c79

7000c79
source-repository head
7000c79
  type: git
7000c79
  location: https://github.com/lens/lens-aeson
7000c79

7000c79
library
7000c79
  build-depends:
7000c79
    base                 >= 4.5       && < 5,
7000c79
    lens                 >= 4.4       && < 6,
7000c79
    text                 >= 0.11.1.10 && < 1.3,
7000c79
    vector               >= 0.9       && < 0.13,
7000c79
    unordered-containers >= 0.2.3     && < 0.3,
7000c79
    attoparsec           >= 0.10      && < 0.15,
7000c79
    bytestring           >= 0.9       && < 0.12,
7000c79
    aeson                >= 0.7.0.5   && < 1.6,
7000c79
    scientific           >= 0.3.2     && < 0.4
7000c79

7000c79
  exposed-modules:
7000c79
    Data.Aeson.Lens
7000c79

7000c79
  ghc-options: -Wall -fwarn-tabs -O2
7000c79
  hs-source-dirs: src
7000c79
  default-language: Haskell2010