packages feed

json-encoder-0.1.8: json-encoder.cabal

name:
  json-encoder
version:
  0.1.8
synopsis:
  A direct-to-bytes single-pass JSON encoder with a declarative DSL
description:
category:
  JSON, Codec
homepage:
  https://github.com/sannsyn/json-encoder 
bug-reports:
  https://github.com/sannsyn/json-encoder/issues 
author:
  Nikita Volkov <nikita.y.volkov@mail.ru>
maintainer:
  Nikita Volkov <nikita.y.volkov@mail.ru>
copyright:
  (c) 2015, Sannsyn AS
license:
  MIT
license-file:
  LICENSE
build-type:
  Simple
cabal-version:
  >=1.10


source-repository head
  type:
    git
  location:
    git://github.com/sannsyn/json-encoder.git


library
  hs-source-dirs:
    library
  default-extensions:
    Arrows, BangPatterns, ConstraintKinds, DataKinds, DefaultSignatures, DeriveDataTypeable, DeriveFoldable, DeriveFunctor, DeriveGeneric, DeriveTraversable, EmptyDataDecls, FlexibleContexts, FlexibleInstances, FunctionalDependencies, GADTs, GeneralizedNewtypeDeriving, LambdaCase, LiberalTypeSynonyms, MagicHash, MultiParamTypeClasses, MultiWayIf, NoImplicitPrelude, NoMonomorphismRestriction, OverloadedStrings, PatternGuards, ParallelListComp, QuasiQuotes, RankNTypes, RecordWildCards, ScopedTypeVariables, StandaloneDeriving, TemplateHaskell, TupleSections, TypeFamilies, TypeOperators, UnboxedTuples
  default-language:
    Haskell2010
  other-modules:
    JSONEncoder.Prelude
    JSONEncoder.Builders
  exposed-modules:
    JSONEncoder
  build-depends:
    --
    text == 1.*,
    bytestring >= 0.10 && < 0.11,
    bytestring-tree-builder >= 0.2.4 && < 0.3,
    scientific >= 0.3 && < 0.4,
    --
    contravariant-extras == 0.3.*,
    contravariant >= 1.3 && < 2,
    semigroups >= 0.18 && < 0.19,
    -- 
    base-prelude >= 0.1.21 && < 2,
    base < 5