Skip to content

Commit

Permalink
Update from Hackage at 2018-08-21T23:44:08Z
Browse files Browse the repository at this point in the history
  • Loading branch information
all-cabal-tool committed Aug 21, 2018
1 parent 8657db3 commit 03d2df2
Show file tree
Hide file tree
Showing 4 changed files with 187 additions and 0 deletions.
44 changes: 44 additions & 0 deletions Fin/0.2.5.0/Fin.cabal
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
name: Fin
version: 0.2.5.0
synopsis: Finite totally-ordered sets
-- description:
license: BSD3
license-file: LICENSE
author: M Farkas-Dyck
maintainer: strake888@gmail.com
-- copyright:
category: Data
build-type: Simple
cabal-version: >=1.10

library
build-depends: peano
exposed-modules: Data.Fin
, Data.Fin.List
, Data.Fin.Permutation
other-modules: Data.Ap
, Data.Fin.Private
build-depends: alg >=0.2.5 && <0.3
, base >=4.7 && <5
, foldable1 >=0.1 && <0.2
, natural-induction >=0.2 && <0.3
default-language: Haskell2010
default-extensions: UnicodeSyntax
, LambdaCase
, EmptyCase
, ScopedTypeVariables
, FlexibleContexts
, FlexibleInstances
, PolyKinds
, DataKinds
, GADTs
, StandaloneDeriving
, DeriveFunctor, DeriveFoldable, DeriveTraversable
ghc-options: -Wall -Wcompat -Wredundant-constraints
-Wincomplete-record-updates -Wincomplete-uni-patterns
-Wno-name-shadowing -Wno-unticked-promoted-constructors
-Werror=incomplete-patterns
-Werror=incomplete-uni-patterns
-Werror=incomplete-record-updates
-Werror=missing-fields
-Werror=missing-methods
1 change: 1 addition & 0 deletions Fin/0.2.5.0/Fin.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"package-hashes":{"MD5":"66cd41800661008422bce40ee560a75b","Skein512_512":"29c146f9961ad1525e5d9e510ee85cf60bf05611763a16d5ff4ea51476d34fbc4031144adf0cd8679d2e4e8b9efa76b5be646252e70751f798695f8c81af3e21","SHA1":"642baa307f652604c150a0d50eff54d0141e67a3","SHA512":"f9de97f1f0d10a9e3fbe555d9f412bbd38b40f240175112d24a851b3187a00bcbcb6c5b9894c40cf7d1c0d557dcfc9276c89e0da29c686e35a168b2d56cb34b2","SHA256":"cc477d9fba847b45cf8c9140e3b5429a8434731c80e11ae950678610ac22064a"},"package-locations":["https://hackage.haskell.org/package/Fin-0.2.5.0/Fin-0.2.5.0.tar.gz","https://s3.amazonaws.com/hackage.fpcomplete.com/package/Fin-0.2.5.0.tar.gz"],"package-size":4848}
141 changes: 141 additions & 0 deletions hw-prim/0.6.2.13/hw-prim.cabal
Original file line number Diff line number Diff line change
@@ -0,0 +1,141 @@
-- This file has been generated from package.yaml by hpack version 0.18.1.
--
-- see: https://github.com/sol/hpack

name: hw-prim
version: 0.6.2.13
synopsis: Primitive functions and data types
description: Primitive functions and data types.
category: Data
stability: Experimental
homepage: http://github.com/haskell-works/hw-prim#readme
bug-reports: https://github.com/haskell-works/hw-prim/issues
author: John Ky
maintainer: newhoggy@gmail.com
copyright: 2016-2018 John Ky
license: BSD3
license-file: LICENSE
tested-with: GHC == 8.4.2, GHC == 8.2.2, GHC == 8.0.2, GHC == 7.10.3
build-type: Simple
cabal-version: >= 1.10

extra-source-files:
README.md

source-repository head
type: git
location: https://github.com/haskell-works/hw-prim

flag bounds-checking-enabled
description: Enable bmi2 instruction set
manual: False
default: False

library
hs-source-dirs:
src
other-extensions: AllowAmbiguousTypes
ghc-options: -Wall -O2 -msse4.2
build-depends:
base >= 4.8 && < 5
, bytestring >= 0.9 && < 0.11
, mmap >= 0.5 && < 0.6
, vector >= 0.12 && < 0.13
, semigroups >= 0.8.4 && < 0.19
, transformers >= 0.4 && < 0.6
if flag(bounds-checking-enabled)
cpp-options: -DBOUNDS_CHECKING_ENABLED
exposed-modules:
HaskellWorks.Data.AtIndex
HaskellWorks.Data.ByteString
HaskellWorks.Data.ByteString.Lazy
HaskellWorks.Data.Char
HaskellWorks.Data.Char.IsChar
HaskellWorks.Data.Concat
HaskellWorks.Data.Container
HaskellWorks.Data.Decode
HaskellWorks.Data.Drop
HaskellWorks.Data.Empty
HaskellWorks.Data.Filter
HaskellWorks.Data.FromByteString
HaskellWorks.Data.FromForeignRegion
HaskellWorks.Data.Generate
HaskellWorks.Data.Head
HaskellWorks.Data.Length
HaskellWorks.Data.Naive
HaskellWorks.Data.Positioning
HaskellWorks.Data.Product
HaskellWorks.Data.Search
HaskellWorks.Data.Sign
HaskellWorks.Data.Snoc
HaskellWorks.Data.Take
HaskellWorks.Data.TreeCursor
HaskellWorks.Data.Uncons
HaskellWorks.Data.Unsign
HaskellWorks.Data.Vector.AsVector64
HaskellWorks.Data.Vector.AsVector64ns
HaskellWorks.Data.Vector.AsVector64s
HaskellWorks.Data.Vector.AsVector8
HaskellWorks.Data.Vector.AsVector8ns
HaskellWorks.Data.Vector.AsVector8s
HaskellWorks.Data.Vector.BoxedVectorLike
HaskellWorks.Data.Vector.Storable
HaskellWorks.Data.Vector.StorableVectorLike
other-modules:
Paths_hw_prim
default-language: Haskell2010

test-suite hw-prim-test
type: exitcode-stdio-1.0
main-is: Spec.hs
hs-source-dirs:
test
other-extensions: AllowAmbiguousTypes
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N
build-depends:
base >= 4.8 && < 5
, bytestring >= 0.9 && < 0.11
, mmap >= 0.5 && < 0.6
, vector >= 0.12 && < 0.13
, semigroups >= 0.8.4 && < 0.19
, transformers >= 0.4 && < 0.6
, QuickCheck >= 2.10 && < 2.12
, directory >= 1.2 && < 1.4
, exceptions >= 0.8 && < 0.11
, hedgehog >= 0.5 && < 0.7
, hspec >= 2.4 && <2.6
, hw-hspec-hedgehog >= 0.1 && < 0.2
, hw-prim
if flag(bounds-checking-enabled)
cpp-options: -DBOUNDS_CHECKING_ENABLED
other-modules:
HaskellWorks.Data.ByteStringSpec
HaskellWorks.Data.FromByteStringSpec
HaskellWorks.Data.FromForeignRegionSpec
HaskellWorks.Data.SearchSpec
HaskellWorks.Data.Vector.AsVector64nsSpec
HaskellWorks.Data.Vector.AsVector64sSpec
HaskellWorks.Data.Vector.AsVector8nsSpec
HaskellWorks.Data.Vector.AsVector8sSpec
default-language: Haskell2010

benchmark bench
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs:
bench
other-extensions: AllowAmbiguousTypes
ghc-options: -Wall -O2 -msse4.2
build-depends:
base >= 4.8 && < 5
, bytestring >= 0.9 && < 0.11
, mmap >= 0.5 && < 0.6
, vector >= 0.12 && < 0.13
, semigroups >= 0.8.4 && < 0.19
, transformers >= 0.4 && < 0.6
, criterion >= 1.2 && < 1.6
, hw-prim
, mmap >= 0.5 && < 0.6
if flag(bounds-checking-enabled)
cpp-options: -DBOUNDS_CHECKING_ENABLED
default-language: Haskell2010
1 change: 1 addition & 0 deletions hw-prim/0.6.2.13/hw-prim.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"package-hashes":{"MD5":"5e703a4590694e752149a2c1ab47e8bf","Skein512_512":"32125e233dc8185583e950dd3577ded3198b21f9663914d9de1374f1435d80e76a777141748f6ef5f2cbd440f5019e917eb6d2addf0c9372b43b4c2534654c8a","SHA1":"6638409a6408e255ec8051846efd5bd2f6e443e5","SHA512":"afcf8436bb1c7f33be454ad9e56c0e2f4d8c61eb4b63d4b90cbc6f100c2b5a291bf0dcbef9cd9da0d471f20b4e876125f7d46f9375c6bf520ed99d9db33cbdcc","SHA256":"cbee0b6b4e470961c5d430ec9062d00f03ad69a4e393688efbce2096764a6f33"},"package-locations":["https://hackage.haskell.org/package/hw-prim-0.6.2.13/hw-prim-0.6.2.13.tar.gz","https://s3.amazonaws.com/hackage.fpcomplete.com/package/hw-prim-0.6.2.13.tar.gz"],"package-size":13994}

0 comments on commit 03d2df2

Please sign in to comment.