packages feed

memorypool-0.1.0.0: memorypool.cabal

name:                memorypool
version:             0.1.0.0
synopsis:            basic memory pool outside of haskell heap/GC
description:         See Readme
homepage:            https://github.com/lspitzner/memorypool
license:             BSD3
license-file:        LICENSE
author:              Lennart Spitzner
maintainer:          lsp@informatik.uni-kiel.de
copyright:           Copyright (C) 2016 Lennart Spitzner
category:            System
build-type:          Simple
cabal-version:       >=1.10

extra-source-files:
  ChangeLog.md
  README.md

source-repository head
  type: git
  location: https://github.com/lspitzner/memorypool.git

library
  exposed-modules:     System.MemoryPool
  hs-source-dirs:      src
  default-language:    Haskell2010
  ghc-options:         -Wall
  build-depends:
    base         >=4.7 && <4.10,
    vector       >=0.11.0.0 && <0.12,
    containers   >=0.5.6.2 && <0.6,
    transformers >=0.4.2.0 && <0.6,
    unsafe       >=0.0 && <0.1
  if impl(ghc<7.10) {
    build-depends:
      void       >=0.7.1 && <0.8
  }