packages feed

bit-array-0.1.0: bit-array.cabal

name:
  bit-array
version:
  0.1.0
synopsis:
  A bit array (aka bitset, bitmap, bit vector) API for numeric types
description:
  The library extends the numeric types with an array-like interface 
  over individual set bits.
  It also provides an API for conversion to and 
  from the binary notation.
category:
  Data Structures, Bit Vectors, Pretty Printer
homepage:
  https://github.com/nikita-volkov/bit-array 
bug-reports:
  https://github.com/nikita-volkov/bit-array/issues 
author:
  Nikita Volkov <nikita.y.volkov@mail.ru>
maintainer:
  Nikita Volkov <nikita.y.volkov@mail.ru>
copyright:
  (c) 2014, Nikita Volkov
license:
  MIT
license-file:
  LICENSE
build-type:
  Custom
cabal-version:
  >=1.10


source-repository head
  type:
    git
  location:
    git://github.com/nikita-volkov/bit-array.git


library
  hs-source-dirs:
    library
  other-modules:
    BitArray.Prelude
    BitArray.Parser
  exposed-modules:
    BitArray
  build-depends:
    -- debugging:
    loch-th == 0.2.*,
    placeholders == 0.1.*,
    -- general:
    numeric-qq >= 0.1.2 && < 0.2,
    base >= 4.5 && < 4.8
  default-extensions:
    Arrows, BangPatterns, ConstraintKinds, DataKinds, DefaultSignatures, DeriveDataTypeable, DeriveFunctor, DeriveGeneric, EmptyDataDecls, FlexibleContexts, FlexibleInstances, FunctionalDependencies, GADTs, GeneralizedNewtypeDeriving, ImpredicativeTypes, LambdaCase, LiberalTypeSynonyms, MagicHash, MultiParamTypeClasses, MultiWayIf, NoImplicitPrelude, NoMonomorphismRestriction, OverloadedStrings, PatternGuards, ParallelListComp, QuasiQuotes, RankNTypes, RecordWildCards, ScopedTypeVariables, StandaloneDeriving, TemplateHaskell, TupleSections, TypeFamilies, TypeOperators, UnboxedTuples
  default-language:
    Haskell2010


test-suite doctests
  type:
    exitcode-stdio-1.0
  hs-source-dirs:
    executables
  main-is:
    Doctests.hs
  ghc-options:
    -threaded
  build-depends:
    doctest == 0.9.*,
    directory == 1.2.*,
    filepath == 1.3.*,
    base >= 4.5 && < 5
  default-extensions:
    Arrows, BangPatterns, ConstraintKinds, DataKinds, DefaultSignatures, DeriveDataTypeable, DeriveFunctor, DeriveGeneric, EmptyDataDecls, FlexibleContexts, FlexibleInstances, FunctionalDependencies, GADTs, GeneralizedNewtypeDeriving, ImpredicativeTypes, LambdaCase, LiberalTypeSynonyms, MultiParamTypeClasses, MultiWayIf, NoImplicitPrelude, NoMonomorphismRestriction, OverloadedStrings, PatternGuards, ParallelListComp, QuasiQuotes, RankNTypes, RecordWildCards, ScopedTypeVariables, StandaloneDeriving, TemplateHaskell, TupleSections, TypeFamilies, TypeOperators
  default-language:
    Haskell2010