name: superbuffer version: 0.1.0.0 synopsis: Efficiently build a bytestring from smaller chunks description: Efficiently (both fast and memory efficient) build a bytestring from smaller chunks homepage: https://github.com/agrafix/superbuffer#readme license: BSD3 author: Alexander Thiemann maintainer: mail@athiemann.net copyright: 2016 Alexander Thiemann category: Web extra-source-files: - README.md - stack.yaml - package.yaml dependencies: - base >= 4.7 && < 5 - bytestring < 0.11 ghc-options: -Wall library: source-dirs: src exposed-modules: Data.ByteString.SuperBuffer c-sources: cbits/superbuffer.c tests: spec: cpp-options: -DTest main: Test.hs source-dirs: test dependencies: - HTF < 0.14 - QuickCheck < 2.10 - superbuffer ghc-options: -funfolding-use-threshold=16 -O2 -optc-Ofast benchmarks: sbuf-bench: main: Bench.hs source-dirs: bench dependencies: - criterion < 1.2 - superbuffer ghc-options: -funfolding-use-threshold=16 -O2 -optc-Ofast