cabal-version: 2.0 name: microaeson version: 0.1.0.1 x-revision: 2 synopsis: A tiny JSON library with light dependency footprint license: GPL-3 license-file: LICENSE author: Herbert Valerio Riedel maintainer: Andreas Abel category: Text, Web, JSON build-type: Simple description: { @microaeson@ aims to provide a [RFC 8259](https://tools.ietf.org/html/rfc8259) compliant JavaScript Object Notation (JSON) implementation. The [microaeson](https://hackage.haskell.org/package/microaeson) package provides a smaller subset of the [aeson](https://hackage.haskell.org/package/aeson) API with less dependencies and a simpler implementation. . The API is designed in such a way to allow to easily convert client code written against @microaeson@'s API to use the full [aeson](https://hackage.haskell.org/package/aeson) API. } tested-with: GHC == 9.4.1 GHC == 9.2.3 GHC == 9.0.2 GHC == 8.10.7 GHC == 8.8.4 GHC == 8.6.5 GHC == 8.4.4 GHC == 8.2.2 GHC == 8.0.2 GHC == 7.10.3 extra-source-files: CHANGELOG.md README.md source-repository head type: git location: https://github.com/haskell-hvr/microaeson.git library default-language: Haskell2010 other-extensions: CPP DeriveDataTypeable DeriveGeneric FlexibleInstances GeneralizedNewtypeDeriving MagicHash OverloadedStrings hs-source-dirs: src exposed-modules: Data.Aeson.Micro other-modules: Data.Aeson.Micro.Parser Data.Aeson.Micro.Scanner build-depends: array ^>= 0.5.1.0 , base >= 4.8.0.0 && < 5 , bytestring ^>= 0.10.6.0 || ^>= 0.11.1.0 , containers ^>= 0.5.6.2 || ^>= 0.6.0.1 , deepseq ^>= 1.4.1.1 , fail ^>= 4.9.0.0 , text ^>= 1.2.2.2 || ^>= 2.0 build-tool-depends: alex:alex ^>= 3.2.0 ghc-options: -Wall if impl(ghc >= 8.0) ghc-options: -Wcompat -Wnoncanonical-monad-instances if impl(ghc < 8.8) ghc-options: -Wnoncanonical-monadfail-instances test-suite microaeson default-language: Haskell2010 hs-source-dirs: src-tests main-is: tests.hs type: exitcode-stdio-1.0 -- internal dependency build-depends: microaeson -- constraints inherited via lib:microaeson component build-depends: base , bytestring , containers , text -- dependencies requiring constraints build-depends: aeson ^>= 1.3.1.0 || ^>= 1.4.7.1 || ^>= 1.5.6.0 || ^>= 2.0.3.0 || ^>= 2.1.0.0 , QuickCheck ^>= 2.11.3 || ^>= 2.12.6.1 || ^>= 2.13.2 || ^>= 2.14.2 , quickcheck-instances ^>= 0.3.16 , tasty ^>= 1.0.1.1 || ^>= 1.1.0.4 || ^>= 1.2.3 || ^>= 1.3.1 || ^>= 1.4.1 , tasty-quickcheck ^>= 0.10 , unordered-containers ^>= 0.2.8.0 , vector ^>= 0.12.0.1 || ^>= 0.13.0.0 ghc-options: -Wall if impl(ghc >= 8.0) ghc-options: -Wcompat -Wnoncanonical-monad-instances if impl(ghc < 8.8) ghc-options: -Wnoncanonical-monadfail-instances