Skip to content

Commit

Permalink
Update from Hackage at 2019-11-10T00:50:22Z
Browse files Browse the repository at this point in the history
  • Loading branch information
all-cabal-tool committed Nov 10, 2019
1 parent 91381ef commit 314c616
Show file tree
Hide file tree
Showing 2 changed files with 307 additions and 0 deletions.
306 changes: 306 additions & 0 deletions store/0.7.0/store.cabal
@@ -0,0 +1,306 @@
cabal-version: 1.12

-- This file has been generated from package.yaml by hpack version 0.31.1.
--
-- see: https://github.com/sol/hpack
--
-- hash: e97026b3dd607ae815326e726b09a470b5b4bb879c5d9faaee87ef206e9a4830

name: store
version: 0.7.0
synopsis: Fast binary serialization
category: Serialization, Data
homepage: https://github.com/fpco/store#readme
bug-reports: https://github.com/fpco/store/issues
maintainer: Michael Sloan <mgsloan@gmail.com>
copyright: 2016 FP Complete
license: MIT
license-file: LICENSE
build-type: Simple
extra-source-files:
ChangeLog.md
README.md

source-repository head
type: git
location: https://github.com/fpco/store

flag comparison-bench
manual: True
default: False

flag integer-simple
description: Use the [simple integer library](http://hackage.haskell.org/package/integer-simple) instead of [integer-gmp](http://hackage.haskell.org/package/integer-gmp)
manual: False
default: False

flag small-bench
manual: True
default: False

library
exposed-modules:
Data.Store
Data.Store.Internal
Data.Store.TH
Data.Store.TH.Internal
Data.Store.TypeHash
Data.Store.TypeHash.Internal
Data.Store.Version
System.IO.ByteBuffer
other-modules:
Data.Store.Impl
hs-source-dirs:
src
ghc-options: -Wall -fwarn-tabs -fwarn-incomplete-uni-patterns -fwarn-incomplete-record-updates -O2
build-depends:
array >=0.5.0.0
, async >=2.0.2
, base >=4.7 && <5
, base-orphans >=0.4.3
, base64-bytestring >=0.1.1
, bifunctors >=4.0
, bytestring >=0.10.4.0
, containers >=0.5.5.1
, contravariant >=1.3
, cryptohash >=0.11.6
, deepseq >=1.3.0.2
, directory >=1.2
, fail >=4.9
, filepath >=1.3
, free >=4.11
, ghc-prim >=0.3.1.0
, hashable >=1.2.3.1
, hspec >=2.1.2
, hspec-smallcheck >=0.3.0
, lifted-base >=0.2.3.3
, monad-control >=0.3.3.0
, mono-traversable >=0.7.0
, network >=2.6.0.2
, primitive >=0.6
, resourcet >=1.1.3.3
, safe >=0.3.8
, semigroups >=0.8
, smallcheck >=1.1.1
, store-core >=0.4 && <0.5
, syb >=0.4.4
, template-haskell >=2.9.0.0
, text >=1.2.0.4
, th-lift >=0.7.1
, th-lift-instances >=0.1.4
, th-orphans >=0.12.2
, th-reify-many >=0.1.6
, th-utilities >=0.2
, time >=1.4.2
, transformers >=0.3.0.0
, unordered-containers >=0.2.5.1
, vector >=0.10.12.3
, void >=0.5.11
if flag(integer-simple)
build-depends:
integer-simple >=0.1.1.1
else
cpp-options: -DINTEGER_GMP
build-depends:
integer-gmp >=0.5.1.0
default-language: Haskell2010

test-suite store-test
type: exitcode-stdio-1.0
main-is: Spec.hs
other-modules:
Data.Store.UntrustedSpec
Data.StoreSpec
Data.StoreSpec.TH
System.IO.ByteBufferSpec
hs-source-dirs:
test
ghc-options: -Wall -fwarn-tabs -fwarn-incomplete-uni-patterns -fwarn-incomplete-record-updates -O2 -threaded -rtsopts -with-rtsopts=-N
build-depends:
array >=0.5.0.0
, async >=2.0.2
, base >=4.7 && <5
, base-orphans >=0.4.3
, base64-bytestring >=0.1.1
, bifunctors >=4.0
, bytestring >=0.10.4.0
, clock >=0.3
, containers >=0.5.5.1
, contravariant >=1.3
, cryptohash >=0.11.6
, deepseq >=1.3.0.2
, directory >=1.2
, fail >=4.9
, filepath >=1.3
, free >=4.11
, ghc-prim >=0.3.1.0
, hashable >=1.2.3.1
, hspec >=2.1.2
, hspec-smallcheck >=0.3.0
, lifted-base >=0.2.3.3
, monad-control >=0.3.3.0
, mono-traversable >=0.7.0
, network >=2.6.0.2
, primitive >=0.6
, resourcet >=1.1.3.3
, safe >=0.3.8
, semigroups >=0.8
, smallcheck >=1.1.1
, store
, store-core >=0.4 && <0.5
, syb >=0.4.4
, template-haskell >=2.9.0.0
, text >=1.2.0.4
, th-lift >=0.7.1
, th-lift-instances >=0.1.4
, th-orphans >=0.12.2
, th-reify-many >=0.1.6
, th-utilities >=0.2
, time >=1.4.2
, transformers >=0.3.0.0
, unordered-containers >=0.2.5.1
, vector >=0.10.12.3
, void >=0.5.11
if flag(integer-simple)
build-depends:
integer-simple >=0.1.1.1
else
cpp-options: -DINTEGER_GMP
build-depends:
integer-gmp >=0.5.1.0
default-language: Haskell2010

benchmark store-bench
type: exitcode-stdio-1.0
main-is: Bench.hs
other-modules:
Paths_store
hs-source-dirs:
bench
ghc-options: -Wall -fwarn-tabs -fwarn-incomplete-uni-patterns -fwarn-incomplete-record-updates -O2 -threaded -rtsopts -with-rtsopts=-N1 -with-rtsopts=-s -with-rtsopts=-qg
build-depends:
array >=0.5.0.0
, async >=2.0.2
, base >=4.7 && <5
, base-orphans >=0.4.3
, base64-bytestring >=0.1.1
, bifunctors >=4.0
, bytestring >=0.10.4.0
, containers >=0.5.5.1
, contravariant >=1.3
, criterion
, cryptohash >=0.11.6
, deepseq >=1.3.0.2
, directory >=1.2
, fail >=4.9
, filepath >=1.3
, free >=4.11
, ghc-prim >=0.3.1.0
, hashable >=1.2.3.1
, hspec >=2.1.2
, hspec-smallcheck >=0.3.0
, lifted-base >=0.2.3.3
, monad-control >=0.3.3.0
, mono-traversable >=0.7.0
, network >=2.6.0.2
, primitive >=0.6
, resourcet >=1.1.3.3
, safe >=0.3.8
, semigroups >=0.8
, smallcheck >=1.1.1
, store
, store-core >=0.4 && <0.5
, syb >=0.4.4
, template-haskell >=2.9.0.0
, text >=1.2.0.4
, th-lift >=0.7.1
, th-lift-instances >=0.1.4
, th-orphans >=0.12.2
, th-reify-many >=0.1.6
, th-utilities >=0.2
, time >=1.4.2
, transformers >=0.3.0.0
, unordered-containers >=0.2.5.1
, vector >=0.10.12.3
, void >=0.5.11
if flag(integer-simple)
build-depends:
integer-simple >=0.1.1.1
else
cpp-options: -DINTEGER_GMP
build-depends:
integer-gmp >=0.5.1.0
if flag(comparison-bench)
cpp-options: -DCOMPARISON_BENCH
build-depends:
binary
, cereal
, cereal-vector
, vector-binary-instances
if flag(small-bench)
cpp-options: -DSMALL_BENCH
default-language: Haskell2010

benchmark store-weigh
type: exitcode-stdio-1.0
main-is: Allocations.hs
hs-source-dirs:
test
ghc-options: -Wall -fwarn-tabs -fwarn-incomplete-uni-patterns -fwarn-incomplete-record-updates -O2 -threaded -rtsopts -with-rtsopts=-N -with-rtsopts=-T -O2
build-depends:
array >=0.5.0.0
, async >=2.0.2
, base >=4.7 && <5
, base-orphans >=0.4.3
, base64-bytestring >=0.1.1
, bifunctors >=4.0
, bytestring >=0.10.4.0
, cereal
, cereal-vector
, containers >=0.5.5.1
, contravariant >=1.3
, criterion
, cryptohash >=0.11.6
, deepseq >=1.3.0.2
, directory >=1.2
, fail >=4.9
, filepath >=1.3
, free >=4.11
, ghc-prim >=0.3.1.0
, hashable >=1.2.3.1
, hspec >=2.1.2
, hspec-smallcheck >=0.3.0
, lifted-base >=0.2.3.3
, monad-control >=0.3.3.0
, mono-traversable >=0.7.0
, network >=2.6.0.2
, primitive >=0.6
, resourcet >=1.1.3.3
, safe >=0.3.8
, semigroups >=0.8
, smallcheck >=1.1.1
, store
, store-core >=0.4 && <0.5
, syb >=0.4.4
, template-haskell >=2.9.0.0
, text >=1.2.0.4
, th-lift >=0.7.1
, th-lift-instances >=0.1.4
, th-orphans >=0.12.2
, th-reify-many >=0.1.6
, th-utilities >=0.2
, time >=1.4.2
, transformers >=0.3.0.0
, unordered-containers >=0.2.5.1
, vector >=0.10.12.3
, vector-binary-instances
, void >=0.5.11
, weigh
if flag(integer-simple)
build-depends:
integer-simple >=0.1.1.1
else
cpp-options: -DINTEGER_GMP
build-depends:
integer-gmp >=0.5.1.0
default-language: Haskell2010
1 change: 1 addition & 0 deletions store/0.7.0/store.json
@@ -0,0 +1 @@
{"package-hashes":{"MD5":"bf82c7bc9006b8391b876e6d5cc24759","Skein512_512":"428a34d747e6b2f36c8e74a9ebda4c4b6a4f0bc129e80b92cd77cdfa4373964830a53ae7ae20f46420fb6fa2a67ec06e054d29182085cd8a51a0826febd70ff4","SHA1":"1199b197df2277529e7968a631a5fa361e736566","SHA512":"a5b92404c86c298784404f81a248e6f025edb4decf445b2a97767667bc792b35275081efbac3225c99f4645761c8b806dbba82e259831299c2ee7c51e459b4c1","SHA256":"3860c97ec17bd3e81ae5c79c21dabe949d4b58bbd4c6f1b6e7c678f55a7da06e"},"package-locations":["https://hackage.haskell.org/package/store-0.7.0/store-0.7.0.tar.gz","https://s3.amazonaws.com/hackage.fpcomplete.com/package/store-0.7.0.tar.gz"],"package-size":41803}

0 comments on commit 314c616

Please sign in to comment.