packages feed

bytestring-short-0.0.1.0: bytestring-short.cabal

name:                bytestring-short
version:             0.0.1.0
synopsis:            Backport copy of ShortByteString
description:         Backport copy of ShortByteString
license:             BSD3
license-file:        LICENSE
author:              Kei Hibino
maintainer:          Kei Hibino <ex8k.hibino@gmail.com>
copyright:           Copyright (c) Don Stewart          2005-2009,
                               (c) Duncan Coutts        2006-2013,
                               (c) David Roundy         2003-2005,
                               (c) Kei Hibino           2015.
category:            Text
build-type:          Simple
-- extra-source-files:
cabal-version:       >=1.10

library
  exposed-modules:
                       Data.ByteString.Short
                       Data.ByteString.Short.Internal
  -- other-modules:

  other-extensions:
                       DeriveDataTypeable
                       CPP
                       BangPatterns
                       RankNTypes
                       ForeignFunctionInterface
                       MagicHash
                       UnboxedTuples
                       UnliftedFFITypes
                       Unsafe

  build-depends:         base >=4.2 && <5
                       , bytestring >=0.9.1 && <0.10.4
                       , deepseq >=1.1
  hs-source-dirs:      src
  default-language:    Haskell2010

  ghc-options:
                       -Wall

  default-language: Haskell98

  c-sources:         cbits/short_fpstring.c
  include-dirs:      include
  includes:          short_fpstring.h
  install-includes:  short_fpstring.h

test-suite prop-compiled
  type:             exitcode-stdio-1.0
  main-is:          Properties.hs
  hs-source-dirs:   tests
  build-depends:    base <5, bytestring-short, bytestring,
                    QuickCheck >=2
  default-language: Haskell98
  c-sources:        cbits/short_fpstring.c
  include-dirs:     include


source-repository head
  type:       git
  location:   https://github.com/khibino/haskell-bytestring-short

source-repository head
  type:       mercurial
  location:   https://bitbucket.org/khibino/haskell-bytestring-short