Skip to content
Merged
Show file tree
Hide file tree
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
12 changes: 6 additions & 6 deletions bench-runner/cabal.project.user
Original file line number Diff line number Diff line change
Expand Up @@ -3,33 +3,33 @@ packages: .
source-repository-package
type: git
location: https://github.com/composewell/streamly.git
tag: dff87c7e2ef5ec91783369cf618bf8f67b9817b5
tag: 9a039b89c6b81300b2bd9c8765bf4bfa18e7c83c

source-repository-package
type: git
location: https://github.com/composewell/streamly.git
tag: dff87c7e2ef5ec91783369cf618bf8f67b9817b5
tag: 9a039b89c6b81300b2bd9c8765bf4bfa18e7c83c
subdir: core

source-repository-package
type: git
location: https://github.com/composewell/streamly-process.git
tag: d80b860d9d8ea98e4f7f63390442b3155c34dd08
tag: c1ce40ebe84973d0c54dd27fb17e337bf9ca4a46

source-repository-package
type: git
location: https://github.com/composewell/streamly-shell.git
tag: b0c6318119d1cc5e2106343f17b5cff2ad94417f
tag: 070ff21fda7aab8ca45b08b330746299a91eb981

source-repository-package
type: git
location: https://github.com/composewell/streamly-coreutils.git
tag: 51fca386b29110fdf286afa5c916de2c9501fb3f
tag: 051ef37a5fa399f039d0530e8d642fd79ec6aec2

source-repository-package
type: git
location: https://github.com/composewell/bench-report.git
tag: 7221eaacc68502e888ec95f39f32a0bc02c238f9
tag: a9bbaecb19eda832edf32ae274fef48895facf0b

package bench-report
flags: +no-charts
16 changes: 8 additions & 8 deletions streaming-benchmarks.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -93,16 +93,16 @@ common lib-options
-O2
build-depends:
base == 4.*,
deepseq >= 1.4.4 && < 1.5,
deepseq >= 1.4.4 && < 1.6,
mtl >= 2.2.2 && < 2.4,
random >= 1.0 && < 2.0,
transformers >= 0.5.5 && < 0.7,
template-haskell >= 2.14 && < 2.20
template-haskell >= 2.14 && < 2.23
if flag(use-gauge)
build-depends: gauge >= 0.2.4 && < 0.3
else
build-depends: tasty-bench >= 0.3 && < 0.4
, tasty >= 1.4.1 && < 1.5
build-depends: tasty-bench >= 0.3 && < 0.5
, tasty >= 1.4.1 && < 1.6
mixins: tasty-bench
(Test.Tasty.Bench as Gauge
, Test.Tasty.Bench as Gauge.Main
Expand All @@ -124,7 +124,7 @@ common streamly-options
if !flag(no-fusion-plugin)
ghc-options: -fplugin Fusion.Plugin
build-depends:
streamly-core >= 0.1.0 && < 0.2
streamly-core >= 0.1.0 && < 0.3.1
if !flag(no-fusion-plugin)
build-depends: fusion-plugin >= 0.2 && < 0.3

Expand Down Expand Up @@ -234,21 +234,21 @@ benchmark Sequence
type: exitcode-stdio-1.0
main-is: Benchmarks/Sequence.hs
ghc-options: -main-is Benchmarks.Sequence
build-depends: containers >= 0.5 && < 0.7
build-depends: containers >= 0.5 && < 0.8

benchmark ByteString
import: bench-options
type: exitcode-stdio-1.0
main-is: Benchmarks/ByteString.hs
ghc-options: -main-is Benchmarks.ByteString
build-depends: bytestring >= 0.9 && < 0.12
build-depends: bytestring >= 0.9 && < 0.13

benchmark ByteStringLazy
import: bench-options
type: exitcode-stdio-1.0
main-is: Benchmarks/ByteStringLazy.hs
ghc-options: -main-is Benchmarks.ByteStringLazy
build-depends: bytestring >= 0.9 && < 0.12
build-depends: bytestring >= 0.9 && < 0.13

benchmark Text
import: bench-options
Expand Down
Loading