Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make benchmarks compilable #2

Merged
merged 1 commit into from
Apr 22, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions fast-builder.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ license: PublicDomain
license-file: LICENSE
author: Takano Akio
maintainer: [email protected]
-- copyright:
-- copyright:
category: Data
build-type: Simple
-- extra-source-files:
extra-source-files: benchmarks/aeson/*.hs
cabal-version: >=1.10
tested-with: GHC >= 7.10.1 && < 8

Expand All @@ -22,9 +22,9 @@ library
Data.ByteString.FastBuilder.Internal
other-modules: Data.ByteString.FastBuilder.Internal.Prim

-- other-extensions:
-- other-extensions:
build-depends: base >= 4.8 && < 4.9, bytestring >= 0.10.6.0, ghc-prim
-- hs-source-dirs:
-- hs-source-dirs:
default-language: Haskell2010
ghc-options: -Wall -g

Expand All @@ -33,6 +33,7 @@ benchmark aeson
main-is: main.hs
hs-source-dirs: benchmarks/aeson
other-modules: Fast, Bstr, HashMapExts
include-dirs: benchmarks/aeson
build-depends: base, fast-builder, aeson, criterion, bytestring,
scientific, text, vector, deepseq, unordered-containers, ghc-prim,
template-haskell, true-name >= 0.1.0.0
Expand Down