-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Split test and bench out to separate packages
- Loading branch information
Showing
67 changed files
with
251 additions
and
162 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
cabal-version: 1.12 | ||
|
||
-- This file has been generated from package.yaml by hpack version 0.35.0. | ||
-- | ||
-- see: https://github.com/sol/hpack | ||
|
||
name: bitcoin-bench | ||
version: 0.1.0 | ||
synopsis: Bitcoin benchmark library for Haskell | ||
description: Please see the README on GitHub at <https://github.com/haskell-bitcoin/bitcoin#readme> | ||
category: Bitcoin, Finance, Network | ||
homepage: http://github.com/haskell-bitcoin/bitcoin#readme | ||
bug-reports: http://github.com/haskell-bitcoin/bitcoin/issues | ||
author: Philippe Laprade, | ||
Jean-Pierre Rupp, | ||
Matthew Wraith, | ||
Keagan McClelland | ||
maintainer: [email protected] | ||
license: BSD3 | ||
build-type: Simple | ||
extra-source-files: | ||
./data/block-758000.dat | ||
./data/block-758100.dat | ||
./data/block-758200.dat | ||
./data/block-758300.dat | ||
./data/tx-A.dat | ||
./data/tx-B.dat | ||
./data/tx-C.dat | ||
|
||
source-repository head | ||
type: git | ||
location: git://github.com/haskell-bitcoin/bitcoin.git | ||
|
||
benchmark benchmark | ||
type: exitcode-stdio-1.0 | ||
main-is: Main.hs | ||
other-modules: | ||
Paths_bitcoin_bench | ||
build-depends: | ||
base >=4.9 && <5 | ||
, binary >=0.8.8 | ||
, bitcoin | ||
, bytestring >=0.10.10.0 | ||
, criterion >=1.5 && <1.7 | ||
, deepseq >=1.4.4.0 | ||
, text >=1.2.3.0 | ||
default-language: Haskell2010 |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
name: bitcoin-bench | ||
version: 0.1.0 | ||
synopsis: Bitcoin benchmark library for Haskell | ||
description: Please see the README on GitHub at <https://github.com/haskell-bitcoin/bitcoin#readme> | ||
category: Bitcoin, Finance, Network | ||
author: | ||
- Philippe Laprade | ||
- Jean-Pierre Rupp | ||
- Matthew Wraith | ||
- Keagan McClelland | ||
maintainer: [email protected] | ||
license: BSD3 | ||
homepage: http://github.com/haskell-bitcoin/bitcoin#readme | ||
git: git://github.com/haskell-bitcoin/bitcoin.git | ||
bug-reports: http://github.com/haskell-bitcoin/bitcoin/issues | ||
extra-source-files: | ||
- ./data/*.dat # raw data for benchmarks | ||
benchmarks: | ||
benchmark: | ||
main: Main.hs | ||
dependencies: | ||
- bitcoin | ||
- criterion >=1.5 && <1.7 | ||
- base >=4.9 && <5 | ||
- binary >= 0.8.8 | ||
- bytestring >= 0.10.10.0 | ||
- deepseq >= 1.4.4.0 | ||
- text >= 1.2.3.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,3 +7,7 @@ nix: | |
extra-deps: | ||
- fourmolu-0.8.2.0 | ||
- cryptonite-0.30 | ||
packages: | ||
- . | ||
- ./test | ||
- ./benchmark |
Oops, something went wrong.