packages feed

mason-0.2.1: mason.cabal

cabal-version:       2.4

name:                mason
version:             0.2.1
synopsis:            Fast and extensible bytestring builder
description:
  This package provides efficient implementation of bytestring builders.
  See README.md for details
bug-reports:         https://github.com/fumieval/mason/issues
license:             BSD-3-Clause
license-file:        LICENSE
author:              Fumiaki Kinoshita
maintainer:          fumiexcel@gmail.com
copyright:           2020 Fumiaki Kinoshita, Don Stewart 2005-2009, Duncan Coutts 2006-2015, David Roundy 2003-2005, Jasper Van der Jeugt 2010, Simon Meier 2010-2013, Ben Gamari 2017
category:            Data
extra-source-files:  CHANGELOG.md, README.md
tested-with:         GHC == 8.6.5, GHC==8.8.1

source-repository head
  type: git
  location: https://github.com/fumieval/mason.git

library
  exposed-modules:
    Mason.Builder
    Mason.Builder.Internal
    Mason.Builder.Dynamic
    Mason.Builder.Compat

  c-sources: cbits/dtoa.c
  ghc-options: -Wall -O2
  build-depends:       base >= 4.12.0.0 && <5
    , bytestring
    , text
    , network >= 2.7 && <3.2
    , integer-gmp
    , ghc-prim
    , array
  hs-source-dirs: src
  default-language:    Haskell2010